Blame view

src/routes/layout.tsx 255 Bytes
36821dd7   张志伟   feat: init
1
  import { Outlet } from '@modern-js/runtime/router';
5d134410   张志伟   🐱 feat(*): init
2
3
4
5
6
7
  import dayjs from 'dayjs';
  
  import 'dayjs/locale/zh-cn';
  import '@/style/global.scss';
  
  dayjs.locale('zh-cn');
36821dd7   张志伟   feat: init
8
9
10
11
12
13
14
15
  
  export default function Layout() {
    return (
      <div>
        <Outlet />
      </div>
    );
  }