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

26 lines
776 B
TypeScript
Raw Normal View History

import { CompanyManagement } from "@/components/admin/CompanyManagement";
2025-10-22 14:52:13 +09:00
import { ScrollToTop } from "@/components/common/ScrollToTop";
/**
*
*/
export default function CompanyPage() {
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
{/* 메인 컨텐츠 */}
<CompanyManagement />
</div>
2025-10-22 14:52:13 +09:00
{/* Scroll to Top 버튼 */}
<ScrollToTop />
</div>
);
}