aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/components/Header/index.tsx
blob: 8375c74ac308dffaba9657ebbeb41947e3e8a759 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import CssBaseline from '@mui/material/CssBaseline';
import * as React from 'react';

import Header from './Header';

type Props = { children: React.ReactNode };
function Layout({ children }: Props) {
  return (
    <>
      <CssBaseline />
      <Header />
      {children}
    </>
  );
}

export default Layout;