20 lines
488 B
TypeScript
20 lines
488 B
TypeScript
"use client";
|
|
|
|
import UIGlobal_LayoutHeaderTamplate from "@/app_modules/_global/ui/ui_header_tamplate";
|
|
import UIGlobal_LayoutTamplate from "@/app_modules/_global/ui/ui_layout_tamplate";
|
|
import React from "react";
|
|
|
|
export default function LayoutEvent_Edit({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<>
|
|
<UIGlobal_LayoutTamplate header={<UIGlobal_LayoutHeaderTamplate title="Edit Event" />}>
|
|
{children}
|
|
</UIGlobal_LayoutTamplate>
|
|
</>
|
|
);
|
|
}
|