15 lines
530 B
TypeScript
15 lines
530 B
TypeScript
interface AdminPlaceholderProps {
|
|
label: string;
|
|
}
|
|
|
|
/** 미구현 관리자 메뉴 placeholder */
|
|
const AdminPlaceholder = ({ label }: AdminPlaceholderProps) => (
|
|
<div className="flex flex-col items-center justify-center h-full gap-3">
|
|
<div className="text-4xl opacity-20">🚧</div>
|
|
<div className="text-body-2 font-korean text-fg-sub font-semibold">{label}</div>
|
|
<div className="text-label-2 font-korean text-fg-disabled">해당 기능은 준비 중입니다.</div>
|
|
</div>
|
|
);
|
|
|
|
export default AdminPlaceholder;
|