mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
chrone: sperate client and server to different repos.
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
import React from 'react';
|
||||
import { Button, Intent } from '@blueprintjs/core';
|
||||
import { FormattedMessage as T } from 'components';
|
||||
|
||||
import withDialogActions from 'containers/Dialog/withDialogActions';
|
||||
import { compose } from 'utils';
|
||||
|
||||
function KeyboardShortcutsFooter({
|
||||
// #withDialogActions
|
||||
closeDialog,
|
||||
}) {
|
||||
const handleClose = () => {
|
||||
closeDialog('keyboard-shortcuts');
|
||||
};
|
||||
|
||||
return (
|
||||
<div className={'dialog--keyboard-shortcuts__footer'}>
|
||||
<Button intent={Intent.PRIMARY} onClick={handleClose} small={true}>
|
||||
<T id={'oK_'} />
|
||||
</Button>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default compose(withDialogActions)(KeyboardShortcutsFooter);
|
||||
Reference in New Issue
Block a user