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: , title: "Home", }, { path: "Inference", element: , title: "Inference" }, { path: "About", element: , title: "about" }, { path: "Express", element: , title: "Express" }, { path: "CustomizeVST", element: , title: "CustomizeVST" }, { path: "Results", element: , title: "Results" }, ]; export default pagesData;