layout of actions done

This commit is contained in:
2021-10-22 18:52:31 -03:00
parent 4de12fa282
commit 232792b356
10 changed files with 85 additions and 20 deletions

View File

@@ -2,8 +2,17 @@ import React from 'react'
const EditWord = () => {
return (
<div>
<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>
)
}