import * as Fieldset from '@base-ui/react/Fieldset';
import * as Field from '@base-ui/react/Field';
function ShippingForm() {
return (
<Fieldset.Root>
<Fieldset.Legend>Shipping Address</Fieldset.Legend>
<Field.Root name="street">
<Field.Label>Street</Field.Label>
<Field.Control placeholder="123 Main St" />
</Field.Root>
<Field.Root name="city">
<Field.Label>City</Field.Label>
<Field.Control placeholder="New York" />
</Field.Root>
<Field.Root name="zipCode">
<Field.Label>ZIP Code</Field.Label>
<Field.Control placeholder="10001" />
</Field.Root>
</Fieldset.Root>
);
}