chore: rename folders

This commit is contained in:
Steven
2023-06-23 11:57:15 +08:00
parent 591edfc62d
commit 4d0bdc9b97
15 changed files with 13 additions and 13 deletions

13
web/src/layouts/Root.tsx Normal file
View File

@@ -0,0 +1,13 @@
import { Outlet } from "react-router-dom";
import Header from "../components/Header";
const Root: React.FC = () => {
return (
<div className="w-full h-full flex flex-col justify-start items-start">
<Header />
<Outlet />
</div>
);
};
export default Root;