Skip to content

Instantly share code, notes, and snippets.

@pbasiak
Last active March 30, 2019 13:29
App.js
import React, { Component } from 'react';
import {Heading} from './components/Heading/Heading';
import './App.css';
class App extends Component {
render() {
return (
<div className="App">
<Heading title="React App"/>
</div>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment