aboutsummaryrefslogtreecommitdiffstats
path: root/thallium-frontend/src/pages/DesignSystem.tsx
blob: 21fa915c704d7e1f9bf720797829417edaee3a09 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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>
            </Card>
            <Card title="Seamless Card" seamless>
                <p>
                    This is a seamless card component.
                </p>
            </Card>

        </MaxWidthContainer>
    );
};

export default DesignSystem;