feat: add BRL currency

This commit is contained in:
Yang Luo
2025-04-11 22:24:34 +08:00
parent b7fafcc62b
commit 5c41c6c4a5
3 changed files with 5 additions and 0 deletions

View File

@ -217,6 +217,7 @@ class ProductEditPage extends React.Component {
{id: "CHF", name: "CHF"},
{id: "HKD", name: "HKD"},
{id: "SGD", name: "SGD"},
{id: "BRL", name: "BRL"},
].map((item, index) => <Option key={index} value={item.id}>{item.name}</Option>)
}
</Select>