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

11 lines
201 B
TypeScript
Raw Normal View History

2022-06-03 01:31:07 -04:00
import Link from "next/link";
2022-06-03 01:31:07 -04:00
import React from "react";
2022-06-03 01:31:07 -04:00
2022-06-03 01:31:07 -04:00
export default function Home() {
2022-06-03 01:31:07 -04:00
return (
<p>
2022-06-07 03:07:31 -04:00
Click <Link href="/playground">here</Link> to visit the playground 7
2022-06-03 01:31:07 -04:00
</p>
);
2022-06-03 01:31:07 -04:00
}