summaryrefslogtreecommitdiff
path: root/components/common/selectors/nation/index.ts
diff options
context:
space:
mode:
authorjoonhoekim <26rote@gmail.com>2025-09-24 19:07:45 +0900
committerjoonhoekim <26rote@gmail.com>2025-09-24 19:07:45 +0900
commit146dd77da407438023d6fe6f18c0ebb8b6915765 (patch)
treeb13f65d5b177aa245ef4fba997bba636440afa97 /components/common/selectors/nation/index.ts
parentd704d85094ba1e98bc5727161e1600e6f86cda3a (diff)
(김준회) nonsap 기준정보 기반 국가 선택기 컴포넌트 구현 및 AVL, Vendor-Pool 적용
Diffstat (limited to 'components/common/selectors/nation/index.ts')
-rw-r--r--components/common/selectors/nation/index.ts20
1 files changed, 20 insertions, 0 deletions
diff --git a/components/common/selectors/nation/index.ts b/components/common/selectors/nation/index.ts
new file mode 100644
index 00000000..f3b257c4
--- /dev/null
+++ b/components/common/selectors/nation/index.ts
@@ -0,0 +1,20 @@
+// 국가 선택기 관련 컴포넌트와 타입 내보내기
+
+export { NationSelector } from './nation-selector'
+export type { NationSelectorProps } from './nation-selector'
+
+export { NationSingleSelector } from './nation-single-selector'
+export type { NationSingleSelectorProps } from './nation-single-selector'
+
+export { NationMultiSelector } from './nation-multi-selector'
+export type { NationMultiSelectorProps } from './nation-multi-selector'
+
+export {
+ getNationCodes,
+ getNationCodeByCode,
+ getNationCodesByCodes
+} from './nation-service'
+export type {
+ NationCode,
+ NationSearchOptions
+} from './nation-service'