blob: 42a0cfc1bc494d7bc08959cdfe659bc76a1c8423 (
plain) (
tree)
|
|
import React from 'react';
import CssBaseline from '@material-ui/core/CssBaseline';
import Header from './Header';
type Props = { children: React.ReactNode };
function Layout({ children }: Props) {
return (
<>
<CssBaseline />
<Header />
{children}
</>
);
}
export default Layout;
|