'use client' import type { FC } from 'react' import React from 'react' import type { MetadataItemWithEdit } from '../types' import cn from '@/utils/classnames' import Label from './label' import InputCombined from './input-combined' import { RiIndeterminateCircleLine } from '@remixicon/react' type Props = { className?: string payload: MetadataItemWithEdit onChange: (value: MetadataItemWithEdit) => void onRemove: () => void } const AddRow: FC = ({ className, payload, onChange, onRemove, }) => { return (
) } export default React.memo(AddRow)