summaryrefslogtreecommitdiff
path: root/components/common/selectors/nation/index.ts
diff options
context:
space:
mode:
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'