1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
// @jsxImportSource xeact // @jsxRuntime automatic import { c } from "xeact"; const onclick = () => { Array.from(c("xeblog-slides-fluff")).forEach((el) => el.classList.toggle("hidden") ); }; export default function NoFunAllowed() { const button = ( <button class="" onclick={() => onclick()} > No fun allowed </button> ); return button; }