subman-nextjs/src/app/ui/forms/story.tsx

12 lines
359 B
TypeScript
Raw Normal View History

2024-06-11 17:14:30 +00:00
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>
2024-06-12 09:00:59 +00:00
<input type="number" id="word-count" step="500" />
2024-06-11 17:14:30 +00:00
<GenreCheckboxes />
2024-06-11 17:21:14 +00:00
<input type="submit" value="Submit" />
2024-06-11 17:14:30 +00:00
</form>
}