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

13 lines
284 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>
Click <Link href="/playground">here</Link> to visit the playground
2022-09-02 17:39:46 -04:00
<br />
Click <Link href="/samplePage">here</Link> to visit a sample page
2022-06-03 01:31:07 -04:00
</p>
);
2022-06-03 01:31:07 -04:00
}