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

14 lines
247 B
TypeScript

import React from "react";
import { ColorPalette } from "../components/ColorPalette";
export default function Home() {
return (
<>
<h1>Playground</h1>
<p>Show off your components here!</p>
<ColorPalette />
</>
);
}