/// // deno-lint-ignore-file no-unused-vars import { handler, computed } from "commontools"; // Test: && with JSX inside handler callback should transform to when() const MyHandler = handler((_event, { show }) => { return
{computed(() => show) && Content}
; }); // Test: || with JSX inside handler callback should transform to unless() const MyHandler2 = handler((_event, { value }) => { return
{computed(() => value) || Fallback}
; });