2020-12-19 01:47:14 +02:00
|
|
|
import SettingsIcon from "@material-ui/icons/Settings";
|
|
|
|
import GroupAddIcon from "@material-ui/icons/GroupAdd";
|
|
|
|
|
2020-12-16 03:09:24 +02:00
|
|
|
const steps = [
|
|
|
|
{
|
|
|
|
id: 0,
|
|
|
|
title: "Login",
|
|
|
|
route: "/",
|
2020-12-19 01:47:14 +02:00
|
|
|
disabled: false,
|
|
|
|
icon: <SettingsIcon />
|
2020-12-16 03:09:24 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 1,
|
|
|
|
title: "About",
|
|
|
|
route: "/about",
|
2020-12-19 01:47:14 +02:00
|
|
|
disabled: false,
|
|
|
|
icon: <GroupAddIcon />
|
2020-12-16 03:09:24 +02:00
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
export default steps;
|