mirror of
https://github.com/FranP-code/Hangman-game-with-React.git
synced 2025-10-13 00:42:32 +00:00
21 lines
534 B
JavaScript
21 lines
534 B
JavaScript
import React from 'react'
|
|
|
|
const EditWord = () => {
|
|
return (
|
|
<div className="action-form edit-word">
|
|
<form>
|
|
<select>
|
|
<option>Select category</option>
|
|
</select>
|
|
<select>
|
|
<option>Select word</option>
|
|
</select>
|
|
<input type="text" placeholder="Place the new word" />
|
|
<input type="submit" value="Delete" />
|
|
</form>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default EditWord
|