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