interface PriceBoxProps { title: string; price: number; } export const PriceBox = ({ title, price }: PriceBoxProps) => { return (

{title}

£{price.toLocaleString('en-GB')}

); };