import Price from './price'; const Label = ({ title, amount, currencyCode }: { title: string; amount: string; currencyCode: string; }) => { return (

{title}

); }; export default Label;