page.tsx 230 B

12345678
  1. import { Playground } from "@/components/playground";
  2. import { pageMetadata } from "@/lib/page-metadata";
  3. export const metadata = pageMetadata("playground");
  4. export default function PlaygroundPage() {
  5. return <Playground />;
  6. }