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

12 lines
215 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-15 19:53:00 -04:00
Click <Link href="/playground">here</Link> to visit the playground on test
4
2022-06-03 01:31:07 -04:00
</p>
);
2022-06-03 01:31:07 -04:00
}