blowater/app/UI/sign-in.test.tsx
BlowaterNostr e86101ae7f
5.0.0: Redesign & Rearchitecture (#380)
* remove nip-07 extension sign-in temporarily
* bring kind-1 back!
* separated relay views
2024-03-15 21:44:17 +08:00

12 lines
246 B
TypeScript

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