blowater/app/UI/sign-in.test.tsx
Water Blower 55d6735e7b
use esbuild & JSR (#486)
and remove submodules
2024-07-03 15:46:31 +08:00

12 lines
223 B
TypeScript

/** @jsx h */
import { h, render } from "preact";
import { testEventBus } from "./_setup.test.ts";
import { SignIn } from "./sign-in.tsx";
render(
<SignIn
emit={testEventBus.emit}
/>,
document.body,
);