type Props = { title: string description?: string } export default function ItemCardSidebar({ description, title }: Props) { return (
{title}
) }