File size: 263 Bytes
ccb514f
 
 
 
 
8446e15
ccb514f
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
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>
  );
}