www-new/components/playground.tsx

13 lines
236 B
TypeScript

import React from "react";
import styles from "./playground.module.css";
export function Playground() {
return (
<ul className={styles.playground}>
<li>Some</li>
<li>React</li>
<li>Content</li>
</ul>
);
}