12 lines
283 B
TypeScript
12 lines
283 B
TypeScript
|
|
|
||
|
|
import React from 'react';
|
||
|
|
|
||
|
|
export const DesignSystemDemo: React.FC = () => {
|
||
|
|
return (
|
||
|
|
<div className="p-8 text-white">
|
||
|
|
<h1 className="text-2xl font-bold mb-4">Design System Demo</h1>
|
||
|
|
<p>Component under construction.</p>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
};
|