From 146dd77da407438023d6fe6f18c0ebb8b6915765 Mon Sep 17 00:00:00 2001 From: joonhoekim <26rote@gmail.com> Date: Wed, 24 Sep 2025 19:07:45 +0900 Subject: (김준회) nonsap 기준정보 기반 국가 선택기 컴포넌트 구현 및 AVL, Vendor-Pool 적용 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/common/selectors/nation/index.ts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 components/common/selectors/nation/index.ts (limited to 'components/common/selectors/nation/index.ts') 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' -- cgit v1.2.3