import React from "react"; export function LabelWithInfo({ label, info }: { label: string; info: number; }) { return (
{label}
{info}
); }