react18-tools/turborepo-template

View on GitHub
examples/nextjs/src/app/page.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import MyButton from "./button";
import { LandingPage } from "@repo/shared/dist/server";
import { Demo } from "@repo/shared";
import { ReactNode } from "react";

export const metadata = {
  title: "React 18 Loaders",
};

/** next.js landing page */
export default function Page(): ReactNode {
  return (
    <LandingPage title="Next.js Example">
      <Demo />
      <MyButton />
    </LandingPage>
  );
}