14 lines
271 B
TypeScript
14 lines
271 B
TypeScript
// Boot styles
|
|
import './index.css';
|
|
|
|
// Boot scripts
|
|
import { StrictMode } from 'react';
|
|
import { createRoot } from 'react-dom/client';
|
|
import { App } from './App.tsx';
|
|
|
|
createRoot(document.getElementById('root')!).render(
|
|
<StrictMode>
|
|
<App />
|
|
</StrictMode>,
|
|
);
|