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

28 lines
440 B
JavaScript
Raw Normal View History

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,
2020-12-24 02:27:29 +02:00
title: "Steps.Login",
2020-12-16 03:09:24 +02:00
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-24 02:27:29 +02:00
title: "Steps.Network",
2023-03-03 08:48:10 +02:00
route: "/machines",
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,
2020-12-24 02:27:29 +02:00
title: "Steps.Settings",
2020-12-19 02:28:20 +02:00
route: "/settings",
disabled: false,
icon: <Settings />
2020-12-16 03:09:24 +02:00
}
];
export default steps;