blowater/UI/invite-card.test.tsx
2023-09-18 13:59:36 +00:00

15 lines
431 B
TypeScript

/** @jsx h */
import { h, render } from "https://esm.sh/preact@10.17.1";
import { InviteCard } from "./invite-card.tsx";
render(
<InviteCard
name="test group test group test group test group test group test group"
description="this is a test group this is a test group this is a test group this is a test group"
onJoin={() => {
console.log("join");
}}
/>,
document.body,
);