interface Props { label: string value: string | number } export default function StatCard({ label, value }: Props) { return (

{label}

{value}

) }