Skip to content

Instantly share code, notes, and snippets.

@wesleymonaro
Created January 7, 2019 23:02
Show Gist options
  • Save wesleymonaro/0240b4cccda83a03f3a9a0927483a08a to your computer and use it in GitHub Desktop.
Save wesleymonaro/0240b4cccda83a03f3a9a0927483a08a to your computer and use it in GitHub Desktop.
import React, { Component } from "react";
import { Provider } from "react-redux";
import store from "./store";
import Home from "./home";
class App extends Component {
render() {
return (
<Provider store={store}>
<Home />
</Provider>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment