Skip to content

Instantly share code, notes, and snippets.

@hpjaj
Created November 14, 2018 17:55
Show Gist options
  • Save hpjaj/89f8123b63cfae78c2734e0c921956e0 to your computer and use it in GitHub Desktop.
Save hpjaj/89f8123b63cfae78c2734e0c921956e0 to your computer and use it in GitHub Desktop.
// app/javascript/components/NewPost.js
render() {
return (
<div>
<h1>New Post</h1>
<form>
<input
name="title"
placeholder="title"
type="text"
/>
<input
name="body"
placeholder="body"
type="text"
/>
<button>Create Post</button>
</form>
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment