import { Navigate, RouteObject } from 'react-router-dom'; import { lazy } from 'react'; const Home = lazy(() => import('../pages/home')); const ToolsByCategory = lazy(() => import('../pages/tools-by-category')); const routes: RouteObject[] = [ { path: '/', element: }, { path: '/categories/:categoryName', element: }, { path: '*', element: } ]; export default routes;