增加初始化page

This commit is contained in:
none
2023-03-23 11:13:05 +08:00
parent b6d432798c
commit 0fabdf7da7
6 changed files with 30 additions and 13 deletions

11
src/pages/init/index.tsx Normal file
View File

@@ -0,0 +1,11 @@
import { Outlet } from "react-router-dom";
interface Props {}
export const InitPage = (props: Props) => {
return (
<>
<Outlet />
</>
);
};