cs-2022-class-profile/pages/index.tsx

13 lines
284 B
TypeScript

import Link from "next/link";
import React from "react";
export default function Home() {
return (
<p>
Click <Link href="/playground">here</Link> to visit the playground
<br />
Click <Link href="/samplePage">here</Link> to visit a sample page
</p>
);
}