mirror of
https://github.com/m1ngsama/chat-bubbles-for-yt.git
synced 2025-12-24 10:51:21 +00:00
11 lines
214 B
JavaScript
11 lines
214 B
JavaScript
import React from 'react'
|
|
import ReactDOM from 'react-dom'
|
|
import './index.css'
|
|
import App from './App'
|
|
|
|
ReactDOM.render(
|
|
<React.StrictMode>
|
|
<App />
|
|
</React.StrictMode>,
|
|
document.getElementById('root')
|
|
)
|