Skip to content

Instantly share code, notes, and snippets.

@elcodabra
Created September 20, 2017 09:33
Show Gist options
  • Save elcodabra/56e186087d055a6971a29b041e16444d to your computer and use it in GitHub Desktop.
Save elcodabra/56e186087d055a6971a29b041e16444d to your computer and use it in GitHub Desktop.
Adding a React Component
import React from 'react';
import Header from './components/header';
const App = () => {
return (
<div className="container">
<div className="starter-template">
<Header />
</div>
</div>
)
}
export default App;
import React from 'react';
const Header = () => (
<header>
<h1>React Example</h1>
</header>
)
export default Header;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment