import { Navigate, RouteObject } from 'react-router'; import Alpha from './alpha'; import CreatingLibrary from './creating-library'; import NewLibrary from './new-library'; import Privacy from './privacy'; import Start from './start'; export default [ { index: true, element: }, { path: 'alpha', element: }, { element: , path: 'start' }, { element: , path: 'new-library' }, { element: , path: 'privacy' }, { element: , path: 'creating-library' } ] satisfies RouteObject[];