mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
10 lines
207 B
TypeScript
10 lines
207 B
TypeScript
|
import { Metadata } from "next";
|
||
|
|
||
|
export const metadata: Metadata = {
|
||
|
title: "Sign up - Plane",
|
||
|
};
|
||
|
|
||
|
export default function SignUpLayout({ children }: { children: React.ReactNode }) {
|
||
|
return children;
|
||
|
}
|