Skip to content
Snippets Groups Projects

Merge @fmazzini components.

Merged Defendi Alberto requested to merge feature/privateroute/role into dev
2 files
+ 122
52
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -3,6 +3,9 @@ import { makeStyles } from '@material-ui/core/styles';
@@ -3,6 +3,9 @@ import { makeStyles } from '@material-ui/core/styles';
import { Tabs, Tab } from '@material-ui/core';
import { Tabs, Tab } from '@material-ui/core';
import LockIcon from '@material-ui/icons/Lock';
import LockIcon from '@material-ui/icons/Lock';
 
import { Link, useHistory } from 'react-router-dom';
 
import { NonAuthRoutes } from 'api/routes';
 
const useStyles = makeStyles(() => ({
const useStyles = makeStyles(() => ({
tabs: {
tabs: {
color: 'white',
color: 'white',
@@ -26,15 +29,19 @@ const useStyles = makeStyles(() => ({
@@ -26,15 +29,19 @@ const useStyles = makeStyles(() => ({
}));
}));
export const NavBarLogin: FC = () => {
export const NavBarLogin: FC = () => {
 
const history = useHistory();
 
const classes = useStyles();
const classes = useStyles();
const [value, setValue] = React.useState(0);
const [value, setValue] = React.useState('');
const handleChange = (
const handleChange = (
event: React.ChangeEvent<unknown>,
event: React.ChangeEvent<unknown>,
newValue: number,
newValue: string,
): void => {
): void => {
setValue(newValue);
setValue(newValue);
 
history.replace(newValue);
 
console.log(newValue);
};
};
return (
return (
@@ -45,8 +52,8 @@ export const NavBarLogin: FC = () => {
@@ -45,8 +52,8 @@ export const NavBarLogin: FC = () => {
className={classes.tabs}
className={classes.tabs}
TabIndicatorProps={{ style: { display: 'none' } }}
TabIndicatorProps={{ style: { display: 'none' } }}
>
>
<Tab label="" className={classes.tabPan} />
<Tab
<Tab
 
value={`/auth${NonAuthRoutes.signIn}`}
label="Login"
label="Login"
icon={<LockIcon className={classes.tabIcon} />}
icon={<LockIcon className={classes.tabIcon} />}
className={`${classes.tabPan} ${classes.rightAlign}`}
className={`${classes.tabPan} ${classes.rightAlign}`}
Loading