mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
feat: migrate dashboard app to use react data router
This commit is contained in:
parent
ff885b9b21
commit
cd11e6e36f
9 changed files with 107 additions and 100 deletions
|
@ -1,13 +1,18 @@
|
|||
|
||||
import { History } from '@remix-run/router';
|
||||
import React from 'react';
|
||||
import { RouterProvider, createHashRouter } from 'react-router-dom';
|
||||
import {
|
||||
RouterProvider,
|
||||
createHashRouter
|
||||
} from 'react-router-dom';
|
||||
|
||||
import { EXPERIMENTAL_APP_ROUTES } from 'apps/experimental/routes/routes';
|
||||
import { useLegacyRouterSync } from 'hooks/useLegacyRouterSync';
|
||||
import { DASHBOARD_APP_ROUTES } from 'apps/dashboard/routes/routes';
|
||||
|
||||
const router = createHashRouter([
|
||||
...EXPERIMENTAL_APP_ROUTES
|
||||
...EXPERIMENTAL_APP_ROUTES,
|
||||
...DASHBOARD_APP_ROUTES
|
||||
]);
|
||||
|
||||
export default function RootAppRouter({ history }: { history: History}) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue