Created
November 14, 2018 17:59
-
-
Save hpjaj/653d923ee9f4ebdc76ff8076c6f00fff to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// app/javascript/components/NewPost.js | |
... | |
handleSubmit = event => { | |
event.preventDefault(); | |
} | |
render() { | |
return ( | |
<div> | |
<h1>New Post</h1> | |
<form onSubmit={e => this.handleSubmit(e)}> | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment