Preparing for experimental app routes

This commit is contained in:
grafixeyehero 2023-04-13 00:33:32 +03:00 committed by Bill Thornton
parent 4ea9f0147a
commit 12c1ae3590
10 changed files with 50 additions and 64 deletions

19
src/routes/AsyncRoute.tsx Normal file
View file

@ -0,0 +1,19 @@
import React from 'react';
import { Route } from 'react-router-dom';
import AsyncPage from '../components/AsyncPage';
export interface AsyncRoute {
/** The URL path for this route. */
path: string
/** The relative path to the page component in the routes directory. */
page: string
}
export const toAsyncPageRoute = (route: AsyncRoute) => (
<Route
key={route.path}
path={route.path}
element={<AsyncPage page={route.page} />}
/>
);