This repository has been archived on 2025-12-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
fullstack-open/part6/query-anecdotes/src/components/AnecdoteForm.js
Andrew Trieu 8af61a9000 Upload 6.20
2023-06-24 16:16:26 +03:00

22 lines
429 B
JavaScript

const AnecdoteForm = () => {
const onCreate = (event) => {
event.preventDefault()
const content = event.target.anecdote.value
event.target.anecdote.value = ''
console.log('new anecdote')
}
return (
<div>
<h3>create new</h3>
<form onSubmit={onCreate}>
<input name='anecdote' />
<button type="submit">create</button>
</form>
</div>
)
}
export default AnecdoteForm