2020-12-19 03:12:10 +02:00
|
|
|
import { Router, 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,
|
2020-12-19 03:12:10 +02:00
|
|
|
title: "Network",
|
2020-12-19 15:51:32 +02:00
|
|
|
route: "/network",
|
2020-12-19 01:47:14 +02:00
|
|
|
disabled: false,
|
2020-12-19 03:12:10 +02:00
|
|
|
icon: <Router />
|
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;
|