Skip to content

Instantly share code, notes, and snippets.

@archi14
Created February 11, 2022 08:39
Show Gist options
  • Save archi14/375b06d240dde0dec1e766c01aaa2aed to your computer and use it in GitHub Desktop.
Save archi14/375b06d240dde0dec1e766c01aaa2aed to your computer and use it in GitHub Desktop.
Redux store
import { createStore} from 'redux';
import App2 from './components/App2';
const store = createStore(reducers);
ReactDOM.render(
<Provider store={store}>
<App2/>
</Provider>,
document.querySelector("#root")
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment