import { Label } from "@/components/ui/label" import React from "react" export function Field({ label, children }: { label: string; children: React.ReactNode }) { return (
{children}
) }