Starowo's picture
Upload 1411 files
b9fe2b4 verified
raw
history blame contribute delete
263 Bytes
import { Outlet } from 'umi';
import { Header } from './next-header';
export default function NextLayout() {
return (
<section className="h-full flex flex-col text-colors-text-neutral-strong">
<Header></Header>
<Outlet />
</section>
);
}