// 라이트 UI 목업의 공용 크롬 프레임 (서버 컴포넌트). // 실데이터 없이 "운영 중인 화면" 인상을 주는 craft 요소. --jsm-* 토큰만 사용. import type { ReactNode } from 'react'; interface MockWindowProps { /** 타이틀바 텍스트 — 파일/서비스명 느낌 (예: 'stock-report', 'realestate-match') */ title: string; children: ReactNode; className?: string; } export default function MockWindow({ title, children, className }: MockWindowProps) { return (