ERP-node/frontend/app/(main)/admin/userMng/page.tsx

31 lines
877 B
TypeScript
Raw Normal View History

2025-08-21 09:41:46 +09:00
"use client";
import { UserManagement } from "@/components/admin/UserManagement";
2025-10-22 14:52:13 +09:00
import { ScrollToTop } from "@/components/common/ScrollToTop";
2025-08-21 09:41:46 +09:00
/**
*
* URL: /admin/userMng
2025-10-22 14:52:13 +09:00
*
* shadcn/ui
2025-08-21 09:41:46 +09:00
*/
export default function UserMngPage() {
return (
2025-10-22 14:52:13 +09:00
<div className="flex min-h-screen flex-col bg-background">
<div className="space-y-6 p-6">
{/* 페이지 헤더 */}
<div className="space-y-2 border-b pb-4">
<h1 className="text-3xl font-bold tracking-tight"> </h1>
<p className="text-sm text-muted-foreground"> </p>
</div>
2025-10-22 14:52:13 +09:00
{/* 메인 컨텐츠 */}
<UserManagement />
</div>
2025-10-22 14:52:13 +09:00
{/* Scroll to Top 버튼 (모바일/태블릿 전용) */}
<ScrollToTop />
2025-08-21 09:41:46 +09:00
</div>
);
}