import type * as React from "react"; import { RemoveFieldButton } from "./RemoveFieldButton"; export function FormFieldset({ title, children, onRemove, }: { title: string; children: React.ReactNode; onRemove: () => void; }) { return (
{title}
{children}
); }