mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
feat: migrate legacy app to use react data router
This commit is contained in:
parent
675f9625f2
commit
ff885b9b21
5 changed files with 76 additions and 59 deletions
12
src/apps/stable/AppLayout.tsx
Normal file
12
src/apps/stable/AppLayout.tsx
Normal file
|
@ -0,0 +1,12 @@
|
|||
import React from 'react';
|
||||
import { Outlet } from 'react-router-dom';
|
||||
|
||||
import AppBody from 'components/AppBody';
|
||||
|
||||
export default function AppLayout() {
|
||||
return (
|
||||
<AppBody>
|
||||
<Outlet />
|
||||
</AppBody>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue