next.js/examples/with-playwright/app/page.tsx
page.tsx11 lines162 B
import Link from "next/link";

export default function Page() {
  return (
    <div>
      <h1>Home</h1>
      <Link href="/about">About</Link>
    </div>
  );
}
Quest for Codev2.0.0
/
SIGN IN