10 lines
318 B
TypeScript
10 lines
318 B
TypeScript
|
|
import React from 'react'
|
||
|
|
import ReactDOM from 'react-dom/client'
|
||
|
|
import App from './App.tsx' 👈 Imports from ./App.tsx
|
||
|
|
import './index.css'
|
||
|
|
|
||
|
|
ReactDOM.createRoot(document.getElementById('root')!).render(
|
||
|
|
<React.StrictMode>
|
||
|
|
<App /> 👈 Renders the App component
|
||
|
|
</React.StrictMode>,
|
||
|
|
)
|