aboutsummaryrefslogtreecommitdiffstats
path: root/thallium-frontend/src/pages/DesignSystem.tsx
diff options
context:
space:
mode:
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>
);
};