import { Store } from "@medusajs/medusa" import { useTranslation } from "react-i18next" import DefaultCurrencySelector from "./default-currency-selector" type Props = { store: Store } const DefaultStoreCurrency = ({ store }: Props) => { const { t } = useTranslation() return (
{t( "default-store-currency-this-is-the-currency-your-prices-are-shown-in", "This is the currency your prices are shown in." )}