Skip to content

Instantly share code, notes, and snippets.

@bashidagha
Created February 25, 2022 18:51
Show Gist options
  • Save bashidagha/b065d72b4decc3dc16019f6ef49816b2 to your computer and use it in GitHub Desktop.
Save bashidagha/b065d72b4decc3dc16019f6ef49816b2 to your computer and use it in GitHub Desktop.
import {createStore} from 'redux'
import {Provider} from 'react-redux'
const initialState = {username : "Farshid"};
const returnStateReducer = (state= initialState) =>{
return state;
}
const store =createStore(returnStateReducer);
const App= () => {
return (
<Provider store={store}>
<div>
<Header/>
<h1>Hello World</h1>
</div>
</Provider>
)
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment