import React from 'react'; import { type ICommand } from './'; export const help: ICommand = { name: 'help', keyCommand: 'help', buttonProps: { 'aria-label': 'Open help', title: 'Open help' }, icon: ( ), execute: () => { window.open('https://www.markdownguide.org/basic-syntax/', '_blank', 'noreferrer'); }, };