ERP-node/frontend/app/(pop)/layout.tsx

11 lines
261 B
TypeScript
Raw Normal View History

2026-01-07 14:31:04 +09:00
import "@/app/globals.css";
export const metadata = {
title: "POP - 생산실적관리",
description: "생산 현장 실적 관리 시스템",
};
export default function PopLayout({ children }: { children: React.ReactNode }) {
return <>{children}</>;
}