mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
10 lines
No EOL
198 B
JavaScript
10 lines
No EOL
198 B
JavaScript
const PostEdit = props => {
|
|
return (
|
|
<div className="post">
|
|
<h3>Editing post “{props.title}”</h3>
|
|
<textarea>{props.body}</textarea>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
module.exports = PostEdit; |