mirror of
https://github.com/bspeice/speice.io
synced 2024-11-14 22:18:10 -05:00
13 lines
235 B
TypeScript
13 lines
235 B
TypeScript
import { PropsWithChildren } from "react";
|
|
|
|
import Base from "./LayoutBase";
|
|
|
|
const Layout: React.FC<PropsWithChildren> = ({ children }) => (
|
|
<Base>
|
|
<h1>The Old Speice Guy</h1>
|
|
{children}
|
|
</Base>
|
|
);
|
|
|
|
export default Layout;
|