mirror of
https://github.com/fosrl/pangolin.git
synced 2026-05-04 03:24:09 +00:00
11 lines
249 B
TypeScript
11 lines
249 B
TypeScript
import type { Metadata } from "next";
|
|
import type { ReactNode } from "react";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Create Machine Client"
|
|
};
|
|
|
|
export default function Layout({ children }: { children: ReactNode }) {
|
|
return children;
|
|
}
|