{title === OptionTitle.Hidden ? (
) : (
<>
{title}
{collapsible && }
>
)}
);
}
interface SectionContentsProps {
options: ParamField[];
collapsed: boolean;
}
function SectionContents({ options, collapsed }: SectionContentsProps) {
return (
<>
{options.map((option) => {
return (