Add styles to empty pages

This commit is contained in:
Valtteri Karesto
2021-11-19 16:42:26 +02:00
parent 19741add40
commit db50d86921
2 changed files with 2 additions and 5 deletions

View File

@@ -1,11 +1,8 @@
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>
<Container css={{ py: "$10" }}>This will be the deploy page</Container>
);
};

View File

@@ -1,7 +1,7 @@
import Container from "../../components/Container";
const Test = () => {
return <Container>This will be the test page</Container>;
return <Container css={{ py: "$10" }}>This will be the test page</Container>;
};
export default Test;