(value: string)
| 49 | const [loading, setLoading] = useState<boolean>(false); |
| 50 | |
| 51 | const getLabelClassName = (value: string) => { |
| 52 | return `flex gap-1 p-4 rounded-lg items-center space-x-2 ${type === value ? 'border-[3px] border-blue-500' : 'border-[3px]' |
| 53 | }`; |
| 54 | }; |
| 55 | |
| 56 | const formatInputJSON = (value: string) => { |
| 57 | const valWithout = value.replaceAll("\\", "").slice(1, -1); |