/** * 공통 팝업 셸 — AppPopup 래퍼 (하위 호환) */ import React from 'react'; import AppPopup, { type AppPopupProps } from './AppPopup'; export type PopupShellProps = Omit & { title: React.ReactNode; }; export const PopupShell: React.FC = (props) => ( ); export default PopupShell;