mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-20 14:06:09 +05:00
12 lines
224 B
JavaScript
12 lines
224 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')
|
|
)
|