Skip to content

Commit

Permalink
Add design system page to demo all components
Browse files Browse the repository at this point in the history
  • Loading branch information
jb3 committed Aug 17, 2024
1 parent 3fa6e28 commit beab5ef
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions thallium-frontend/src/pages/DesignSystem.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import Card from "../components/Card";

const DesignSystem = () => {
return (
<>
<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>

</>
);
};

export default DesignSystem;

0 comments on commit beab5ef

Please sign in to comment.