Skip to content

Instantly share code, notes, and snippets.

@pratik-chakravorty
Last active March 29, 2018 04:15
Show Gist options
  • Save pratik-chakravorty/6b2289999cfeb8b28fa2474a2877b2d6 to your computer and use it in GitHub Desktop.
Save pratik-chakravorty/6b2289999cfeb8b28fa2474a2877b2d6 to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
import PostForm from './PostForm';
import AllPost from './AllPost';
class App extends Component {
render() {
return (
<div className="App">
<div className="navbar">
<h2 className="center ">Post It</h2>
</div>
<PostForm />
<AllPost />
</div>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment