mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-20 14:06:09 +05:00
added react-query
This commit is contained in:
@@ -1,13 +1,19 @@
|
||||
import { StrictMode } from 'react'
|
||||
import ReactDOM from 'react-dom'
|
||||
import { QueryClientProvider, QueryClient } from 'react-query'
|
||||
|
||||
import App from './components/App'
|
||||
import 'i18n'
|
||||
|
||||
import './index.css'
|
||||
import App from './components/App'
|
||||
|
||||
const queryClient = new QueryClient()
|
||||
|
||||
ReactDOM.render(
|
||||
<StrictMode>
|
||||
<App />
|
||||
<QueryClientProvider client={queryClient}>
|
||||
<App />
|
||||
</QueryClientProvider>
|
||||
</StrictMode>,
|
||||
document.getElementById('root'),
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user