File size: 370 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
'use client'
import { redirectAction } from './actions'
export default function Form() {
return (
<form>
<input type="text" name="hidden-info" defaultValue="hi" hidden />
<input type="text" name="name" id="client-name" required />
<button formAction={redirectAction} type="submit" id="there">
Go there
</button>
</form>
)
}
|