// @ts-nocheck import { FInputGroup, FSwitch, Group, Stack } from '@/components'; import { CLASSES } from '@/constants'; import { Classes } from '@blueprintjs/core'; import { fieldsGroups } from './constants'; export function EstimateCustomizeContentFields() { return (

Estimate Content

Customize your estimate by editing the items label or hiding some items to match your needs.

{fieldsGroups.map((group) => ( <>

{group.label}

{group.fields.map((item, index) => ( {item.labelKey && ( )} ))} ))}
); }