Nitro-Cool-UI/src/index.tsx
2024-01-17 08:52:08 +04:00

6 lines
161 B
TypeScript

import { createRoot } from 'react-dom/client';
import { App } from './App';
import './index.scss';
createRoot(document.getElementById('root')).render(<App />);