import React from 'react';
import { Box, Divider } from '@rocket.chat/fuselage';
import { useTranslation } from '../../contexts/TranslationContext';
import VerticalBar from './VerticalBar';
const ShortcutSection = ({ title, command }) =>
{title}
{command}
;
const KeyboardShortcuts = ({ handleClose }) => {
const t = useTranslation();
return (
<>
{t('Keyboard_Shortcuts_Title')}
{handleClose && }
>
);
};
export default React.memo(KeyboardShortcuts);