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

11 lines
164 B
TypeScript
Raw Normal View History

2022-06-03 01:31:07 -04:00
import React from "react";
export default function Home() {
return (
<>
<h1>Playground</h1>
<p>Show off your components here!</p>
</>
);
}