0
0
JRJose Romero
Create a form in remix using the <Form>
component.
Library: remix
Shortcut: remix.form.create
import { Form } from "remix";
function MyForm() {
return (
<Form method="post" action="/events">
<input type="text" name="title" />
<input type="text" name="description" />
</Form>
);
}