Formatting-only changes across all component and story files. No logic or behaviour changes — only whitespace, line breaks, and trailing commas. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
23 lines
539 B
TypeScript
23 lines
539 B
TypeScript
import React from 'react';
|
|
import ReactDOM from 'react-dom/client';
|
|
import { ThemeProvider, CssBaseline } from '@mui/material';
|
|
import { theme } from './theme';
|
|
|
|
const App = () => (
|
|
<ThemeProvider theme={theme}>
|
|
<CssBaseline />
|
|
<div style={{ padding: 32 }}>
|
|
<h1>FA Design System</h1>
|
|
<p>
|
|
Run <code>npm run storybook</code> to view components.
|
|
</p>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
|
|
ReactDOM.createRoot(document.getElementById('root')!).render(
|
|
<React.StrictMode>
|
|
<App />
|
|
</React.StrictMode>,
|
|
);
|