network-resurrector-frontend/src/constants/steps.js

28 lines
421 B
JavaScript
Raw Normal View History

2020-12-19 02:28:20 +02:00
import { GroupAdd, VpnKey, Settings } from "@material-ui/icons";
2020-12-19 01:47:14 +02:00
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,
2020-12-19 01:53:43 +02:00
icon: <VpnKey />
2020-12-16 03:09:24 +02:00
},
{
id: 1,
title: "About",
route: "/about",
2020-12-19 01:47:14 +02:00
disabled: false,
2020-12-19 01:53:43 +02:00
icon: <GroupAdd />
2020-12-19 02:28:20 +02:00
},
{
id: 2,
title: "Settings",
route: "/settings",
disabled: false,
icon: <Settings />
2020-12-16 03:09:24 +02:00
}
];
export default steps;