Skip to content

Instantly share code, notes, and snippets.

@KTruong008
Created September 17, 2017 22:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KTruong008/d8042d2a29923c4f2ba94678adccd1f7 to your computer and use it in GitHub Desktop.
Save KTruong008/d8042d2a29923c4f2ba94678adccd1f7 to your computer and use it in GitHub Desktop.
import React from 'react';
import ReactDOM from 'react-dom';
import { Provider } from 'react-redux';
import "tachyons"
import FormContainer from './modules/form/form.container';
import configureStore from './store';
const store = configureStore();
ReactDOM.render(
<Provider store={store}>
<FormContainer />
</Provider>,
document.getElementById('root')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment