import React from 'react'; import { StatePanel } from '../components/diagnostics/StatePanel.tsx'; import { Card } from '../components/ui/Card.tsx'; import { Button } from '../components/ui/Button.tsx'; import { Badge } from '../components/ui/Badge.tsx'; import { Skeleton } from '../components/ui/Skeleton.tsx'; const SystemPage: React.FC = () => { return (

Component & State Lab

A controlled environment to verify all UI states.

Loading States

Empty States

Error States

alert('Retrying...')} />

Success States

Retry Panel

alert('Retrying...')} />

UI Primitives

Default Success Warning Danger Info

This is a card with content.

); }; export default SystemPage;