mirror of
https://github.com/aykhans/slash-e.git
synced 2025-07-23 21:34:24 +00:00
chore: rename folders
This commit is contained in:
13
web/src/layouts/Root.tsx
Normal file
13
web/src/layouts/Root.tsx
Normal 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;
|
Reference in New Issue
Block a user