react-code-dataset / wp-calypso /client /state /selectors /get-connected-applications.js
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
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 );