import { useContext } from "preact/hooks"; import ActionButton from "../react/ActionButton"; import { ParentComponent } from "../react/react_utils"; import { t } from "../../services/i18n"; export default function ToggleSidebarButton() { const parentComponent = useContext(ParentComponent); return ( parentComponent?.triggerCommand("setActiveScreen", { screen: "tree" })} /> ) }