Files
introduction-to-testing/examples/task-list/src/index.tsx
2024-09-18 07:52:42 -06:00

10 lines
248 B
TypeScript

import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import { Application } from './components/application';
createRoot(document.getElementById('root')!).render(
<StrictMode>
<Application />
</StrictMode>,
);