'use client' import { useCurrency } from '@payloadcms/plugin-ecommerce/react' import React from 'react' import { CurrenciesConfig } from '@payloadcms/plugin-ecommerce/types' type Props = { currenciesConfig: CurrenciesConfig } export const CurrencySelector: React.FC = ({ currenciesConfig }) => { const { currency, setCurrency } = useCurrency() return (
selected: {currency.label} ({currency.code})
) }