Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. import React, { Component } from 'react'
  2. import './App.css';
  3. import PostForm from './PostForm'
  4.  
  5. class App extends Component{
  6. render(){
  7. return (
  8. <div className="container">
  9. <div className="col-md-10">
  10. <PostForm />
  11. </div>
  12. </div>
  13. );
  14. }
  15. }
  16.  
  17. export default App
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement