mirror of
https://github.com/duckietm/Nitro-Cool-UI.git
synced 2025-06-21 22:36:58 +00:00
6 lines
161 B
TypeScript
6 lines
161 B
TypeScript
import { createRoot } from 'react-dom/client';
|
|
import { App } from './App';
|
|
import './index.scss';
|
|
|
|
createRoot(document.getElementById('root')).render(<App />);
|