Skip to content

Instantly share code, notes, and snippets.

@wesleymonaro
Created January 7, 2019 22:14
Show Gist options
  • Save wesleymonaro/9ac6a446033f763b979b478f7d3350e0 to your computer and use it in GitHub Desktop.
Save wesleymonaro/9ac6a446033f763b979b478f7d3350e0 to your computer and use it in GitHub Desktop.
import React, { Component } from "react";
class App extends Component {
render() {
return (
<div className="App">
<header className="App-header">Teste Redux</header>
</div>
);
}
}
export default App;
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
ReactDOM.render(<App />, document.getElementById('root'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment