Initial page routing / page structure
This commit is contained in:
12
pages/deploy/index.tsx
Normal file
12
pages/deploy/index.tsx
Normal 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;
|
||||
Reference in New Issue
Block a user