blowater/app/UI/filter.test.tsx

6 lines
185 B
TypeScript
Raw Normal View History

import { h, render } from "preact";
2024-03-19 15:29:59 +00:00
import { Filter } from "./filter.tsx";
2024-06-17 07:42:51 +00:00
import { testEventBus } from "./_setup.test.ts";
2024-03-19 15:29:59 +00:00
2024-06-17 07:42:51 +00:00
render(<Filter emit={testEventBus.emit} />, document.body);