import React from "react"; import { observer } from "mobx-react"; import { theme } from "eez-studio-ui/theme"; import { ShortcutsToolbar } from "instrument/window/terminal/toolbar"; import { executeShortcut } from "instrument/window/script"; import { InstrumentAppStore } from "instrument/window/app-store"; import { Section } from "instrument/bb3/components/Section"; export const ShortcutsSection = observer( ({ appStore }: { appStore: InstrumentAppStore }) => { return (
{ executeShortcut(appStore, shortcut); }} style={{ border: 0, backgroundColor: theme().panelHeaderColor, padding: 0, margin: 0 }} /> } /> ); } );