aboutsummaryrefslogtreecommitdiffstats
path: root/thallium-frontend/src/pages/DesignSystem.tsx
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2024-08-25 04:04:14 +0100
committerGravatar Joe Banks <[email protected]>2024-08-25 04:04:14 +0100
commita828759694a3606bd2154e85696535311b18f824 (patch)
treeeb7da5dbdc0bd1ad23517bf639b9ad540040e3e0 /thallium-frontend/src/pages/DesignSystem.tsx
parentAdd top margin to header (diff)
Make max-width opt in via new container
Diffstat (limited to 'thallium-frontend/src/pages/DesignSystem.tsx')
-rw-r--r--thallium-frontend/src/pages/DesignSystem.tsx6
1 files changed, 4 insertions, 2 deletions
diff --git a/thallium-frontend/src/pages/DesignSystem.tsx b/thallium-frontend/src/pages/DesignSystem.tsx
index f5b091c..21fa915 100644
--- a/thallium-frontend/src/pages/DesignSystem.tsx
+++ b/thallium-frontend/src/pages/DesignSystem.tsx
@@ -1,8 +1,10 @@
import Card from "../components/Card";
+import MaxWidthContainer from "../components/MaxWidthContainer";
+
const DesignSystem = () => {
return (
- <>
+ <MaxWidthContainer>
<h1>Design System</h1>
<Card title="Card">
<p>This is a card component.</p>
@@ -13,7 +15,7 @@ const DesignSystem = () => {
</p>
</Card>
- </>
+ </MaxWidthContainer>
);
};