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

12 lines
215 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 on test
4
</p>
);
}