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

13 lines
250 B
TypeScript

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