aboutsummaryrefslogtreecommitdiff
path: root/demos/hello-next/pages/blue.tsx
blob: fe72a744fec3108a096b3ec475681fbd5a507888 (plain) (blame)
1
2
3
4
5
6
7
8
9
import Link from "next/link";

export default function Blue({}) {
  return (
    <div>
      <h1>Blue</h1>
    </div>
  );
}