12 lines
364 B
TypeScript
12 lines
364 B
TypeScript
|
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>
|
||
|
}
|