mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
16 lines
480 B
JavaScript
16 lines
480 B
JavaScript
import React from 'react';
|
|
import { DialogContent } from 'components';
|
|
import ShortcutsTable from '../../KeyboardShortcuts/ShortcutsTable';
|
|
import KeyboardShortcutsFooter from './KeyboardShortcutsFooter';
|
|
|
|
import 'style/pages/keyboardShortcuts/KeyboardShortcutDialog.scss';
|
|
|
|
export default function KeyboardShortcutsDialogContent() {
|
|
return (
|
|
<DialogContent name={'keyboard-shortcuts'}>
|
|
<ShortcutsTable />
|
|
<KeyboardShortcutsFooter />
|
|
</DialogContent>
|
|
);
|
|
}
|