mirror of
https://github.com/bspeice/speice.io
synced 2024-11-15 06:28:10 -05:00
19 lines
264 B
TypeScript
19 lines
264 B
TypeScript
import Layout from "./LayoutPage";
|
|
|
|
export const Page = () => (
|
|
<>
|
|
<p>Is this thing on?</p>
|
|
<p>
|
|
<a href="/2019/02/the-whole-world">Code</a>
|
|
</p>
|
|
</>
|
|
);
|
|
|
|
export default function () {
|
|
return (
|
|
<Layout>
|
|
<Page />
|
|
</Layout>
|
|
);
|
|
}
|