File size: 318 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 |
import { get } from 'lodash';
import 'calypso/state/connected-applications/init';
/**
* Returns the connected applications of the current user.
* @param {Object} state Global state tree
* @returns {?Array} Connected applications
*/
export default ( state ) => get( state, 'connectedApplications', null );
|