Skip to content

Instantly share code, notes, and snippets.

@codemilli
Created February 12, 2016 12:25
Show Gist options
  • Save codemilli/589b11ffcff420188667 to your computer and use it in GitHub Desktop.
Save codemilli/589b11ffcff420188667 to your computer and use it in GitHub Desktop.
모든 것의 시작.
import React from 'react';
import { render } from 'react-dom';
import { createStore } from 'redux';
import { Provider } from 'react-redux';
import reducer from './reducers';
import App from './containers/app';
let store = createStore(reducer);
render(
<Provider store={store}>
<App />
</Provider>,
document.getElementById('root')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment