19 lines
394 B
TypeScript
19 lines
394 B
TypeScript
/**
|
|
* Frontend application bootstrap for React rendering.
|
|
*/
|
|
import { StrictMode } from 'react';
|
|
import { createRoot } from 'react-dom/client';
|
|
|
|
import App from './App';
|
|
import './design-foundation.css';
|
|
import './styles.css';
|
|
|
|
/**
|
|
* Mounts the root React application into the document.
|
|
*/
|
|
createRoot(document.getElementById('root')!).render(
|
|
<StrictMode>
|
|
<App />
|
|
</StrictMode>,
|
|
);
|