mirror of
https://github.com/bspeice/speice.io
synced 2024-12-22 08:38:09 -05:00
19 lines
254 B
TypeScript
19 lines
254 B
TypeScript
import Layout from "./LayoutPage";
|
|
|
|
export const Page = () => (
|
|
<>
|
|
<p>Is this thing on?</p>
|
|
<p>
|
|
<a href="/2023/06/flam3">Code</a>
|
|
</p>
|
|
</>
|
|
);
|
|
|
|
export default function () {
|
|
return (
|
|
<Layout>
|
|
<Page />
|
|
</Layout>
|
|
);
|
|
}
|