mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Move theme and custom css to react components
This commit is contained in:
parent
27f4b8a7e5
commit
88b247596a
8 changed files with 159 additions and 143 deletions
|
@ -2,11 +2,17 @@ import React from 'react';
|
|||
import { Outlet } from 'react-router-dom';
|
||||
|
||||
import AppBody from 'components/AppBody';
|
||||
import ThemeCss from 'components/ThemeCss';
|
||||
import CustomCss from 'components/CustomCss';
|
||||
|
||||
export default function AppLayout() {
|
||||
return (
|
||||
<AppBody>
|
||||
<Outlet />
|
||||
</AppBody>
|
||||
<>
|
||||
<AppBody>
|
||||
<Outlet />
|
||||
</AppBody>
|
||||
<ThemeCss />
|
||||
<CustomCss />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue