mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-05-01 05:41:09 +01:00
Keyboard shortcuts and accessibility
This commit is contained in:
16
ts/state/roots/createShortcutGuideModal.tsx
Normal file
16
ts/state/roots/createShortcutGuideModal.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import React from 'react';
|
||||
import { Provider } from 'react-redux';
|
||||
|
||||
import { Store } from 'redux';
|
||||
|
||||
import { SmartShortcutGuideModal } from '../smart/ShortcutGuideModal';
|
||||
|
||||
// Workaround: A react component's required properties are filtering up through connect()
|
||||
// https://github.com/DefinitelyTyped/DefinitelyTyped/issues/31363
|
||||
const FilteredShortcutGuideModal = SmartShortcutGuideModal as any;
|
||||
|
||||
export const createShortcutGuideModal = (store: Store, props: Object) => (
|
||||
<Provider store={store}>
|
||||
<FilteredShortcutGuideModal {...props} />
|
||||
</Provider>
|
||||
);
|
||||
Reference in New Issue
Block a user