Skip to content

Instantly share code, notes, and snippets.

@pranitkhadilkar7
Created March 27, 2024 13:43
Show Gist options
  • Save pranitkhadilkar7/31210b58545186f654af9a1baa617692 to your computer and use it in GitHub Desktop.
Save pranitkhadilkar7/31210b58545186f654af9a1baa617692 to your computer and use it in GitHub Desktop.
src/index.tsx file for providing store object inside react application
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App'
import reportWebVitals from './reportWebVitals'
import './styles/index.css'
import { Provider } from 'react-redux'
import { store } from './store/store'
const root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement)
root.render(
<React.StrictMode>
<Provider store={store}>
<App />
</Provider>
</React.StrictMode>
)
// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
reportWebVitals()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment