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

12 lines
238 B
TypeScript

import Link from "next/link";
import React from "react";
export default function Home() {
return (
<p>
Test build updated 3 Click <Link href="/playground">here</Link> to visit
the playground new changes
</p>
);
}