speice.io/pages/LayoutBase.tsx

17 lines
350 B
TypeScript
Raw Normal View History

2023-04-21 22:23:19 -04:00
import { PropsWithChildren, StrictMode } from "react";
2023-04-16 20:10:40 -04:00
import "./style.css";
import Navbar from "./Navbar";
2023-04-16 20:10:40 -04:00
const Layout: React.FC<PropsWithChildren> = ({ children }) => (
2023-04-21 22:23:19 -04:00
<StrictMode>
2023-04-21 23:03:34 -04:00
<div className="gridOffset">
<Navbar />
<hr style={{ marginTop: "0" }} />
{children}
</div>
2023-04-21 22:23:19 -04:00
</StrictMode>
2023-04-16 20:10:40 -04:00
);
export default Layout;