index.tsx 129 Bytes
import { Outlet } from 'umi';
import 'antd-v4/dist/antd.css';
export default function Layout() {
  return (
    <Outlet />
  );
}