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

13 lines
405 B
TypeScript
Raw Normal View History

2024-06-12 15:15:22 +00:00
import { Input } from "@/components/ui/input"
2024-06-11 17:14:30 +00:00
import GenreCheckboxes from "./genreCheckboxes"
export default async function StoryForm() {
return <form>
<label htmlFor="title">Title:</label>
2024-06-12 15:15:22 +00:00
<Input type="text" id="title" />
2024-06-11 17:14:30 +00:00
<label htmlFor="word-count">Word Count:</label>
2024-06-12 15:15:22 +00:00
<Input type="number" id="word-count" step="500" />
2024-06-11 17:14:30 +00:00
<GenreCheckboxes />
2024-06-12 15:15:22 +00:00
<Input type="submit" value="Submit" />
2024-06-11 17:14:30 +00:00
</form>
}