speice.io/pages/LayoutBase.tsx
Bradlee Speice 8e1c7725c1 feat: switch to frontmatter
The intention is to build an RSS generator eventually
2023-05-12 11:04:55 +00:00

17 lines
350 B
TypeScript

import { PropsWithChildren, StrictMode } from "react";
import "./style.css";
import Navbar from "./Navbar";
const Layout: React.FC<PropsWithChildren> = ({ children }) => (
<StrictMode>
<div className="gridOffset">
<Navbar />
<hr style={{ marginTop: "0" }} />
{children}
</div>
</StrictMode>
);
export default Layout;