20 lines
508 B
TypeScript
20 lines
508 B
TypeScript
"use client";
|
|
|
|
import AppComponentGlobal_LayoutTamplate from "@/app_modules/_global/component_layout_tamplate";
|
|
import React from "react";
|
|
import ComponentColab_HeaderTamplate from "../component/header_tamplate";
|
|
|
|
export default function LayoutColab_Edit({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<>
|
|
<AppComponentGlobal_LayoutTamplate header={<ComponentColab_HeaderTamplate title="Edit Proyek" />}>
|
|
{children}
|
|
</AppComponentGlobal_LayoutTamplate>
|
|
</>
|
|
);
|
|
}
|