remove use of thunk action in ble and hub

This is a step towards moving these to sagas
This commit is contained in:
David Lechner
2020-05-27 20:57:22 -05:00
committed by David Lechner
parent 99fd62100d
commit 24acab901c
16 changed files with 356 additions and 260 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ import { RootState } from '../reducers';
import ActionButton, { ActionButtonProps } from './ActionButton';
import downloadIcon from './images/download.svg';
type StateProps = Pick<ActionButtonProps, 'enabled' | 'context'>;
type StateProps = Pick<ActionButtonProps, 'enabled'>;
type DispatchProps = Pick<ActionButtonProps, 'onAction'>;
type OwnProps = Pick<ActionButtonProps, 'id'>;