12 lines
259 B
TypeScript
12 lines
259 B
TypeScript
import type { Metadata } from "next"
|
|
import type { ReactNode } from "react"
|
|
|
|
export const metadata: Metadata = {
|
|
title: { absolute: "" },
|
|
description: "",
|
|
}
|
|
|
|
export default function LoginLayout({ children }: { children: ReactNode }) {
|
|
return children
|
|
}
|