12 lines
346 B
TypeScript
12 lines
346 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 />
|
|
<input type="submit" value="Submit" />
|
|
</form>
|
|
}
|