aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/components/NoFunAllowed.tsx
blob: 9f5c5f58d15a858a217e68eb31e066a378a3fbb0 (plain)
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;
}