next.js/examples/with-dynamic-import/app/_components/Header.tsx
Header.tsx16 lines266 B
import Link from "next/link";

export default function Header() {
  return (
    <div>
      <Link href="/" style={{ marginRight: 10 }}>
        Home
      </Link>

      <Link href="/about" style={{ marginRight: 10 }}>
        About
      </Link>
    </div>
  );
}
Quest for Codev2.0.0
/
SIGN IN