25 lines
465 B
TypeScript
25 lines
465 B
TypeScript
|
|
// POP 디자이너 컴포넌트 export
|
||
|
|
|
||
|
|
// 타입
|
||
|
|
export * from "./types";
|
||
|
|
|
||
|
|
// 메인 디자이너
|
||
|
|
export { default as PopDesigner } from "./PopDesigner";
|
||
|
|
|
||
|
|
// 캔버스
|
||
|
|
export { PopCanvas } from "./PopCanvas";
|
||
|
|
|
||
|
|
// 패널
|
||
|
|
export { PopPanel } from "./panels/PopPanel";
|
||
|
|
|
||
|
|
// 타입 재export (편의)
|
||
|
|
export type {
|
||
|
|
PopLayoutData,
|
||
|
|
PopSectionData,
|
||
|
|
PopComponentData,
|
||
|
|
PopComponentType,
|
||
|
|
GridPosition,
|
||
|
|
PopCanvasGrid,
|
||
|
|
PopInnerGrid,
|
||
|
|
} from "./types/pop-layout";
|