type Props = { title: string description?: string disabled?: boolean onChange?: (text?: string) => void } export default function ItemCardSidebar({ description, title, disabled, onChange, }: Props) { return (
{title}
onChange?.(e.target.value)} />
) }