mirror of
https://github.com/status-im/nimbus-gui.git
synced 2025-01-10 03:25:41 +00:00
15 lines
386 B
TypeScript
15 lines
386 B
TypeScript
import React from 'react'
|
|
import ReactDOM from 'react-dom/client'
|
|
import { Provider as ReduxProvider } from 'react-redux'
|
|
import App from './App.tsx'
|
|
import './index.css'
|
|
import store from './redux/store.ts'
|
|
|
|
ReactDOM.createRoot(document.getElementById('root')!).render(
|
|
<React.StrictMode>
|
|
<ReduxProvider store={store}>
|
|
<App />
|
|
</ReduxProvider>
|
|
</React.StrictMode>,
|
|
)
|