Skip to content

Instantly share code, notes, and snippets.

@chuyihuang
Created August 29, 2017 10:14
Show Gist options
  • Save chuyihuang/4e148198cb95dc1e21fcb6200a94815d to your computer and use it in GitHub Desktop.
Save chuyihuang/4e148198cb95dc1e21fcb6200a94815d to your computer and use it in GitHub Desktop.
week_3_demo_8
// @flow
import React from 'react';
import { Provider } from 'react-redux';
import store from './app/store';
import Todo from './app/components/Todo'
const App = (props) => {
return (
<Provider store={store}>
<Todo />
</Provider>
);
};
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment