1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/src/apps/dashboard/AppLayout.tsx

17 lines
295 B
TypeScript
Raw Normal View History

2023-09-20 00:02:26 -04:00
import React from 'react';
import { Outlet } from 'react-router-dom';
import AppBody from 'components/AppBody';
import '../experimental/AppOverrides.scss';
2023-09-20 00:02:26 -04:00
const AppLayout = () => {
return (
<AppBody>
<Outlet />
</AppBody>
2023-09-20 00:02:26 -04:00
);
};
export default AppLayout;