summaryrefslogtreecommitdiff
path: root/components/common/selectors/currency/index.ts
diff options
context:
space:
mode:
authorjoonhoekim <26rote@gmail.com>2025-11-13 18:16:05 +0900
committerjoonhoekim <26rote@gmail.com>2025-11-13 18:16:05 +0900
commit1b84707d2f7abba3349fc306b539ef661a22cd45 (patch)
treea49d0f89acd99b09bec376708e1161b4aa16318f /components/common/selectors/currency/index.ts
parent517a3e91a899c54a70de76d380eda5f73e8133e9 (diff)
(김준회) 공통컴포넌트: 통화(Currency) 선택기 추가
Diffstat (limited to 'components/common/selectors/currency/index.ts')
-rw-r--r--components/common/selectors/currency/index.ts19
1 files changed, 19 insertions, 0 deletions
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'
+