settings step

master
Tudor Stanciu 2020-12-19 02:28:20 +02:00
parent 549984e67e
commit dd264f79c1
2 changed files with 13 additions and 6 deletions

View File

@ -1,4 +1,4 @@
import { GroupAdd, VpnKey } from "@material-ui/icons";
import { GroupAdd, VpnKey, Settings } from "@material-ui/icons";
const steps = [
{
@ -14,6 +14,13 @@ const steps = [
route: "/about",
disabled: false,
icon: <GroupAdd />
},
{
id: 2,
title: "Settings",
route: "/settings",
disabled: false,
icon: <Settings />
}
];

View File

@ -3,10 +3,10 @@ import { makeStyles } from "@material-ui/core/styles";
import { TextField, InputAdornment } from "@material-ui/core";
import { AccountCircleOutlined, LockOutlined } from "@material-ui/icons";
const useStyles = makeStyles((theme) => ({
const useStyles = makeStyles(theme => ({
margin: {
margin: theme.spacing(1),
},
margin: theme.spacing(1)
}
}));
const LoginComponent = () => {
@ -22,7 +22,7 @@ const LoginComponent = () => {
<InputAdornment position="start">
<AccountCircleOutlined />
</InputAdornment>
),
)
}}
/>
<br />
@ -35,7 +35,7 @@ const LoginComponent = () => {
<InputAdornment position="start">
<LockOutlined />
</InputAdornment>
),
)
}}
/>
</div>