/* eslint-disable @next/next/no-css-tags */ import { FC, ReactElement } from 'react'; import ServerStatusProvider from '../../utils/server-status-context'; import AlertMessageProvider from '../../utils/alert-message-context'; import { MainLayout } from '../admin/MainLayout'; /* NOTE: A bunch of compiled css is loaded here for the Admin UI. These are old stylesheets that were converted from sass and should not be edited or maintained. Instead we are using css modules everywhere. So if you need to change a style rewrite the css file as a css module and import it into the component that needs it, removing it from this global list. */ type AdminLayoutProps = { page: ReactElement; }; export const AdminLayout: FC = ({ page }) => ( <> {page} );