mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-16 16:16:32 +03:00
5 lines
138 B
React
5 lines
138 B
React
import { createRoot } from 'react-dom/client';
|
|
import App from './App.jsx';
|
|
|
|
createRoot(document.getElementById('root')).render(<App />);
|