mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 08:09:33 +01:00
13 lines
360 B
TypeScript
13 lines
360 B
TypeScript
|
|
import { ReactNode } from "react";
|
||
|
|
import { Metadata } from "next";
|
||
|
|
// layouts
|
||
|
|
import { AdminLayout } from "@/layouts/admin-layout";
|
||
|
|
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
title: "Workspace Management - Plane Web",
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function WorkspaceManagementLayout({ children }: { children: ReactNode }) {
|
||
|
|
return <AdminLayout>{children}</AdminLayout>;
|
||
|
|
}
|