Skip to content

Instantly share code, notes, and snippets.

@vslala
Created July 6, 2019 14:08
App - The main file that bootstraps the entire hello world react application with redux
import React from 'react';
import logo from './logo.svg';
import './App.css';
import HelloWorld from './components/HelloWorld';
import { Provider } from 'react-redux';
import store from './store';
import ButtonGroup from './components/ButtonGroup';
function App() {
return (
<Provider store={store}>
<div className="App">
<HelloWorld />
<ButtonGroup technologies={["React", "Angular", "Elm"]} />
</div>
</Provider>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment