import { ReactNode } from "react" export function Field({ children }: { children: ReactNode }) { return (
{children}
) }