Skip to content

Instantly share code, notes, and snippets.

@kiok46
Created June 10, 2018 10:28
Show Gist options
  • Save kiok46/0793490ff857ebad286dca27d1edbc29 to your computer and use it in GitHub Desktop.
Save kiok46/0793490ff857ebad286dca27d1edbc29 to your computer and use it in GitHub Desktop.
Redux, Store, Actions, Reducers and logger: Get Started and a little further (1)
// In src/App.js
import { Provider } from 'react-redux';
import store from './Store';
import CustomTextInput from './Components/CustomTextInput';
<Provider store={store}>
<CustomTextInput/>
</Provider>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment