import React from "react"; interface DataCardProps { title: string; description: string; children?: React.ReactNode; } export function DataCard({ title, description, children }: DataCardProps) { return (

{title}

{description}

{children}
); }