From 1b84707d2f7abba3349fc306b539ef661a22cd45 Mon Sep 17 00:00:00 2001 From: joonhoekim <26rote@gmail.com> Date: Thu, 13 Nov 2025 18:16:05 +0900 Subject: (김준회) 공통컴포넌트: 통화(Currency) 선택기 추가 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/common/selectors/currency/index.ts | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 components/common/selectors/currency/index.ts (limited to 'components/common/selectors/currency/index.ts') diff --git a/components/common/selectors/currency/index.ts b/components/common/selectors/currency/index.ts new file mode 100644 index 00000000..1eb0cfbb --- /dev/null +++ b/components/common/selectors/currency/index.ts @@ -0,0 +1,19 @@ +// 통화 선택기 관련 컴포넌트와 타입 내보내기 + +export { CurrencySelector } from './currency-selector' +export type { CurrencySelectorProps } from './currency-selector' + +export { CurrencySelectorSingleDialog } from './currency-selector-single-dialog' +export type { CurrencySelectorSingleDialogProps } from './currency-selector-single-dialog' + +export { CurrencySelectorMultiDialog } from './currency-selector-multi-dialog' +export type { CurrencySelectorMultiDialogProps } from './currency-selector-multi-dialog' + +export { + getCurrencies, + getDecimalPlaces +} from './currency-service' +export type { + Currency +} from './currency-service' + -- cgit v1.2.3