mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 21:40:18 +02:00
10 lines
227 B
TypeScript
10 lines
227 B
TypeScript
|
|
import { Metadata } from "next";
|
||
|
|
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
title: "Workspace Invitations",
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function WorkspaceInvitationsLayout({ children }: { children: React.ReactNode }) {
|
||
|
|
return children;
|
||
|
|
}
|