Guest User

Untitled

a guest
Nov 14th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. // app/javascript/components/NewPost.js
  2.  
  3. render() {
  4. return (
  5. <div>
  6. <h1>New Post</h1>
  7. <form>
  8. <input
  9. name="title"
  10. placeholder="title"
  11. type="text"
  12. />
  13. <input
  14. name="body"
  15. placeholder="body"
  16. type="text"
  17. />
  18. <button>Create Post</button>
  19. </form>
  20. </div>
  21. )
  22. }
Add Comment
Please, Sign In to add comment