mirror of
https://github.com/hexolan/panels.git
synced 2026-03-27 04:44:10 +00:00
init frontend
This commit is contained in:
12
services/frontend/src/main.tsx
Normal file
12
services/frontend/src/main.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import ReactDOM from 'react-dom/client'
|
||||
|
||||
import { Provider } from 'react-redux'
|
||||
|
||||
import App from './App.tsx'
|
||||
import { store } from './app/store'
|
||||
|
||||
ReactDOM.createRoot(document.getElementById('root')!).render(
|
||||
<Provider store={store}>
|
||||
<App />
|
||||
</Provider>
|
||||
)
|
||||
Reference in New Issue
Block a user