Keyboard shortcuts and accessibility
This commit is contained in:
parent
8590a047c7
commit
20a892247f
87 changed files with 3652 additions and 711 deletions
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>
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue