import * as React from "react" import { Button } from "../src.new/button.js" import { EmbedField } from "../src.new/embed/embed-field.js" import { EmbedTitle } from "../src.new/embed/embed-title.js" import { Embed } from "../src.new/embed/embed.js" export function Counter(props: { onDeactivate: () => void }) { const [count, setCount] = React.useState(0) const [embedVisible, setEmbedVisible] = React.useState(false) return ( <> this button was clicked {count} times {embedVisible && ( the counter {count > 0 && ( {count % 2 === 0 ? "yes" : "no"} )} )} {embedVisible && (