import classNames from "classnames"; import useShortcutStore from "@/store/shortcut"; import Icon from "./Icon"; import ShortcutView from "./ShortcutView"; const ShortcutsContainer = () => { const shortcuts = useShortcutStore().getShortcutList(); return (
Please make sure you have signed in your instance.
{shortcuts.map((shortcut) => { return ; })}
); }; export default ShortcutsContainer;