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

14 lines
247 B
TypeScript
Raw Normal View History

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