mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
20 lines
485 B
TypeScript
20 lines
485 B
TypeScript
![]() |
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} />}
|
||
|
/>
|
||
|
);
|