Beam UI
Components

Form

A native form element with consolidated error handling.

Usage

import { Field } from '@/components/ui/field'
import { Form } from '@base-ui-components/react/form'
<Form>
  <Field>
    <Field.Label />
    {/* Some compatible input component */}
    <Field.Error />
  </Field>
</Form>

On this page