diff options
| author | 2024-08-25 04:04:14 +0100 | |
|---|---|---|
| committer | 2024-08-25 04:04:14 +0100 | |
| commit | a828759694a3606bd2154e85696535311b18f824 (patch) | |
| tree | eb7da5dbdc0bd1ad23517bf639b9ad540040e3e0 /thallium-frontend/src/pages/DesignSystem.tsx | |
| parent | Add 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.tsx | 6 | 
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>      );  };  |