infer-vst / front /src /pages /pagesData.tsx
Yann
push syntax update + dotenv integration + compiler options + loading screen
d909077
raw
history blame
951 Bytes
import { routerType } from "../types/router.types";
import About from "./About/About";
import Inference from "./Inference/Inference";
import Home from "./Home/Home";
import Express from "./Express/Express";
import Results from "./Inference/Results/Results";
import CustomizeVST from "./Inference/CustomizeVST/CustomizeVST";
const pagesData: routerType[] = [
{
path: "Home",
element: <Home />,
title: "Home",
},
{
path: "Inference",
element: <Inference/>,
title: "Inference"
},
{
path: "About",
element: <About />,
title: "about"
},
{
path: "Express",
element: <Express />,
title: "Express"
},
{
path: "CustomizeVST",
element: <CustomizeVST />,
title: "CustomizeVST"
},
{
path: "Results",
element: <Results/>,
title: "Results"
},
];
export default pagesData;