speice.io/pages/index.tsx

10 lines
141 B
TypeScript
Raw Normal View History

2023-04-16 20:10:40 -04:00
import Layout from "./LayoutPage";
2023-04-15 12:55:22 -04:00
2023-04-16 20:10:40 -04:00
export default function () {
2023-04-15 12:56:22 -04:00
return (
2023-04-16 20:10:40 -04:00
<Layout>
2023-04-15 12:56:22 -04:00
<p>Is this thing on?</p>
2023-04-16 20:10:40 -04:00
</Layout>
2023-04-15 12:56:22 -04:00
);
}