From 344f52cb5c42b3a0cee3066ce203f670ae80475c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20FAMIBELLE-PRONZOLA?= Date: Sat, 22 May 2021 23:43:21 +0200 Subject: [PATCH] Update Navigasyon with Kont page --- components/navigasyon.js | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/components/navigasyon.js b/components/navigasyon.js index 19478fb..792fd83 100644 --- a/components/navigasyon.js +++ b/components/navigasyon.js @@ -7,21 +7,24 @@ import AppBar from '@material-ui/core/AppBar' import Tabs from '@material-ui/core/Tabs' import Tab from '@material-ui/core/Tab' import HomeIcon from '@material-ui/icons/Home' -import PersonIcon from '@material-ui/icons/Person' import MenuBookIcon from '@material-ui/icons/MenuBook' +import RecordVoiceOverIcon from '@material-ui/icons/RecordVoiceOver' +import AccountCircleIcon from '@material-ui/icons/AccountCircle' import Typography from '@material-ui/core/Typography' import Box from '@material-ui/core/Box' const tabRouteHref = [ '/', '/awtis?paj&paj=1', - '/teks' + '/teks', + '/kont' ] const tabRouteAs = [ '/', '/awtis/paj/1', - '/teks' + '/teks', + '/kont' ] function TabPanel(props) { @@ -92,13 +95,15 @@ export default function Navigasyon({selectedTab}) { onChange={handleChange} > } {...a11yProps(0)} /> - } {...a11yProps(1)} /> + } {...a11yProps(1)} /> } {...a11yProps(2)} /> + } {...a11yProps(3)} /> + ) }