feat: keyboardshortcuts dialog.

This commit is contained in:
elforjani3
2021-02-25 18:30:20 +02:00
parent 0842473bf4
commit 464b31564e
8 changed files with 256 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ import ExchangeRateFormDialog from 'containers/Dialogs/ExchangeRateFormDialog';
import InventoryAdjustmentDialog from 'containers/Dialogs/InventoryAdjustmentFormDialog';
import PaymentViaVoucherDialog from 'containers/Dialogs/PaymentViaVoucherDialog';
import KeyboardShortcutsDialog from 'containers/Dialogs/keyboardShortcutsDialog';
/**
* Dialogs container.
@@ -22,6 +23,7 @@ export default function DialogsContainer() {
<ItemCategoryDialog dialogName={'item-category-form'} />
<InventoryAdjustmentDialog dialogName={'inventory-adjustment'} />
<PaymentViaVoucherDialog dialogName={'payment-via-voucher'} />
<KeyboardShortcutsDialog dialogName={'keyboard-shortcuts'} />
</div>
);
}