Files
Parsons/src/main.tsx
Richie 047d913960 format: Apply Prettier to existing codebase
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>
2026-03-27 16:42:16 +11:00

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>,
);