Field
Last updated
Was this helpful?
Was this helpful?
const App = () => <Field label="Billing Address">{/* Field Input(s) */}</Field><Field label="Phone number">
{({ id }) => (
<p>
<TextInput placeholder="Prefix" value="+44" />
<TextInput placeholder="Number" value="" id={id} />
</p>
)}
</Field>