Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
|
raw
history blame
508 Bytes

Query Connected Applications

<QueryConnectedApplications /> is a React component used to request the connected applications of the current user.

Usage

Render the component without props. It does not accept any children, nor does it render any elements to the page.

import React, { Fragment } from 'react';
import QueryConnectedApplications from 'calypso/components/data/query-connected-applications';

export default () => (
    <Fragment>
        <QueryConnectedApplications />
    </Fragment>
);