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

11 lines
201 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 7
</p>
);
}