Initial page routing / page structure

This commit is contained in:
Valtteri Karesto
2021-11-19 15:25:39 +02:00
parent 45b4653d5f
commit 9f3978c8a7
5 changed files with 70 additions and 47 deletions

12
pages/deploy/index.tsx Normal file
View File

@@ -0,0 +1,12 @@
import { useSnapshot } from "valtio";
import Container from "../../components/Container";
import { state } from "../../state";
const Deploy = () => {
const snap = useSnapshot(state);
return (
<Container>This will be the deploy page {JSON.stringify(snap)}</Container>
);
};
export default Deploy;