Explore installation guides, API reference and TypeScript examples for RUNILIB packages across web and mobile.
Import the published package name directly. No provider or bootstrapping is required for the standard form flow.
import { useFormBridge, field }
from '@runilib/react-formbridge'Every schema is fully typed. Types are inferred - no manual annotations needed.
const form = useFormBridge({
email: field.email('Email').required(),
})
// form.fields.email is typed ✓No mandatory provider, no setup file. Import and use directly.
import { useFormBridge, field }
from '@runilib/react-formbridge'
const { Form, fields } = useFormBridge({ ... })