11 lines
261 B
TypeScript
11 lines
261 B
TypeScript
|
|
import "@/app/globals.css";
|
||
|
|
|
||
|
|
export const metadata = {
|
||
|
|
title: "POP - 생산실적관리",
|
||
|
|
description: "생산 현장 실적 관리 시스템",
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function PopLayout({ children }: { children: React.ReactNode }) {
|
||
|
|
return <>{children}</>;
|
||
|
|
}
|