mirror of
https://github.com/bspeice/speice.io
synced 2024-11-14 22:18:10 -05:00
10 lines
141 B
TypeScript
10 lines
141 B
TypeScript
import Layout from "./LayoutPage";
|
|
|
|
export default function () {
|
|
return (
|
|
<Layout>
|
|
<p>Is this thing on?</p>
|
|
</Layout>
|
|
);
|
|
}
|