Add styles to empty pages
This commit is contained in:
@@ -1,11 +1,8 @@
|
|||||||
import { useSnapshot } from "valtio";
|
|
||||||
import Container from "../../components/Container";
|
import Container from "../../components/Container";
|
||||||
import { state } from "../../state";
|
|
||||||
|
|
||||||
const Deploy = () => {
|
const Deploy = () => {
|
||||||
const snap = useSnapshot(state);
|
|
||||||
return (
|
return (
|
||||||
<Container>This will be the deploy page {JSON.stringify(snap)}</Container>
|
<Container css={{ py: "$10" }}>This will be the deploy page</Container>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import Container from "../../components/Container";
|
import Container from "../../components/Container";
|
||||||
|
|
||||||
const Test = () => {
|
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;
|
export default Test;
|
||||||
|
|||||||
Reference in New Issue
Block a user