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

12 lines
364 B
TypeScript
Raw Normal View History

2024-06-12 09:00:59 +00:00
export default async function PubForm() {
return <form>
<label htmlFor="title">Title:</label>
<input type="text" id="title" />
<label htmlFor="link">Link:</label>
<input type="text" id="link" />
<label htmlFor="number" id="query-after" >Query after (days):</label>
<input type="number" step="30" />
<input type="submit" value="Submit" />
</form>
}