Skip to content

Instantly share code, notes, and snippets.

@Porter97
Last active March 30, 2020 15:28
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 Porter97/cddf79f8a78cb17f470685a316066455 to your computer and use it in GitHub Desktop.
Save Porter97/cddf79f8a78cb17f470685a316066455 to your computer and use it in GitHub Desktop.
import React from "react";
import { Provider } from 'react-redux';
import AppRouter from './AppRouter';
import store from './store'
const App = () => (
<Provider store={store}>
<AppRouter />
</Provider>
);
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment