11 lines
305 B
TypeScript
11 lines
305 B
TypeScript
|
import GenreCheckboxes from "./genreCheckboxes"
|
||
|
export default async function StoryForm() {
|
||
|
return <form>
|
||
|
<label htmlFor="title">Title:</label>
|
||
|
<input type="text" id="title" />
|
||
|
<label htmlFor="word-count">Word Count:</label>
|
||
|
<input type="text" id="word-count" />
|
||
|
<GenreCheckboxes />
|
||
|
</form>
|
||
|
}
|