22 lines
420 B
JavaScript
22 lines
420 B
JavaScript
// @flow
|
|
|
|
import { SET_DISABLE_BUTTON } from './actionTypes';
|
|
|
|
export * from './actions.any';
|
|
|
|
/**
|
|
* Disabled share video button.
|
|
*
|
|
* @param {boolean} disabled - The current state of the share video button.
|
|
* @returns {{
|
|
* type: SET_DISABLE_BUTTON,
|
|
* disabled: boolean
|
|
* }}
|
|
*/
|
|
export function setDisableButton(disabled: boolean) {
|
|
return {
|
|
type: SET_DISABLE_BUTTON,
|
|
disabled
|
|
};
|
|
}
|