blowater/app/UI/sign-in.test.tsx

12 lines
223 B
TypeScript
Raw Permalink Normal View History

2023-09-22 16:27:36 +00:00
/** @jsx h */
import { h, render } from "preact";
2023-09-22 16:27:36 +00:00
import { testEventBus } from "./_setup.test.ts";
import { SignIn } from "./sign-in.tsx";
2023-09-22 16:27:36 +00:00
render(
<SignIn
2023-09-22 16:27:36 +00:00
emit={testEventBus.emit}
/>,
document.body,
);