mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 08:09:33 +01:00
10 lines
208 B
TypeScript
10 lines
208 B
TypeScript
|
|
import { Metadata } from "next";
|
||
|
|
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
title: "Invitations",
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function InvitationsLayout({ children }: { children: React.ReactNode }) {
|
||
|
|
return children;
|
||
|
|
}
|