// @flowimporttype { State } from'../types';
// Using function declaration as arrow function does not play well with the %checks syntaxexportdefaultfunctionisMovementAllowed(state: State): boolean %checks {
return state.phase === 'DRAGGING' || state.phase === 'COLLECTING';
}