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

11 lines
305 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>
<input type="text" id="word-count" />
<GenreCheckboxes />
</form>
}