blowater/app/UI/editor.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

16 lines
375 B
TypeScript

/** @jsx h */
import { h, render } from "https://esm.sh/preact@10.17.1";
import { Editor } from "./editor.tsx";
import { testEventBus } from "./_setup.test.ts";
let vdom = (
<div class="border">
<Editor
placeholder="Message @xxx"
maxHeight="50vh"
emit={testEventBus.emit}
/>
</div>
);
render(vdom, document.body);