28 lines
421 B
JavaScript
28 lines
421 B
JavaScript
import { GroupAdd, VpnKey, Settings } from "@material-ui/icons";
|
|
|
|
const steps = [
|
|
{
|
|
id: 0,
|
|
title: "Login",
|
|
route: "/",
|
|
disabled: false,
|
|
icon: <VpnKey />
|
|
},
|
|
{
|
|
id: 1,
|
|
title: "About",
|
|
route: "/about",
|
|
disabled: false,
|
|
icon: <GroupAdd />
|
|
},
|
|
{
|
|
id: 2,
|
|
title: "Settings",
|
|
route: "/settings",
|
|
disabled: false,
|
|
icon: <Settings />
|
|
}
|
|
];
|
|
|
|
export default steps;
|