Skip to content

Commit

Permalink
fix: use box
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardocasares committed Oct 28, 2020
1 parent 8220d1a commit 9da6711
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import { Box } from "@/components/Box";
import { Heading } from "@/components/Typography";
import { StationCardList } from "@/components/StationCardList";

export const Index = () => (
<div style={{ padding: "var(--sz4)" }}>
<Box p={["var(--sz4)"]}>
<Heading as="h3">Tango</Heading>
<StationCardList name="tango" />
</div>
</Box>
);

export default Index;

0 comments on commit 9da6711

Please sign in to comment.