import { useExcalidrawSetAppState, useExcalidrawAppState } from "../App"; import { SidebarTriggerProps } from "./common"; import "./SidebarTrigger.scss"; import clsx from "clsx"; export const SidebarTrigger = ({ name, tab, icon, title, children, onToggle, className, style, }: SidebarTriggerProps) => { const setAppState = useExcalidrawSetAppState(); // TODO replace with sidebar context const appState = useExcalidrawAppState(); return ( ); }; SidebarTrigger.displayName = "SidebarTrigger";