import * as React from "react"; import { Inspector, chromeLight, chromeDark } from "react-inspector"; import { Action } from "../icons"; import { Modal } from "../ui"; import { ActionType, AddonProps, ThemeState } from "../../../shared/types"; export const Button = ({ dispatch, globalState }: AddonProps) => { const [open, setOpen] = React.useState(false); const text = "Log of events triggered by user."; return (
  • ); };