以下のコードの実行結果として正しいものはどれですか? ```jsx const Price = ({ amount, currency = '円', tax = 0.1 }) => { const totalAmount = amount * (1 + tax) return <span>{totalAmount.toFixed(0)}{currency}</span> } <Price amount={1000} currency="円" /> ```