This commit is contained in:
lb
2023-06-30 11:08:43 +08:00
commit 3c69bc58bf
131 changed files with 4841 additions and 0 deletions

10
src/layouts/index.jsx Normal file
View File

@@ -0,0 +1,10 @@
import { Link, Outlet } from 'umi';
import styles from './index.less';
export default function Layout() {
return (
<div>
<Outlet />
</div>
);
}

5
src/layouts/index.less Normal file
View File

@@ -0,0 +1,5 @@
.ItemitemBorder {
display: flex;
flex-direction: row;
justify-content: flex-start;
}