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,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;