Newer
Older
import { ReactNode } from 'react';
import { Buckets } from './Buckets';
export const staticRoutes: Route[] = [
{ title: "Home", path: "/", element: <Home /> },
{ title: "Buckets", path: "/buckets", element: <Buckets /> }