mirror of
https://github.com/fosrl/pangolin.git
synced 2026-04-29 01:08:13 +00:00
11 lines
250 B
TypeScript
11 lines
250 B
TypeScript
import type { Metadata } from "next";
|
|
import type { ReactNode } from "react";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Create Public Resource"
|
|
};
|
|
|
|
export default function Layout({ children }: { children: ReactNode }) {
|
|
return children;
|
|
}
|