# Query Jetpack User Connection `` is a React component used in managing network requests for Jetpack current user connection data. ## Usage Render the component, passing `siteId`. It does not accept any children, nor does it render any elements to the page. You can use it adjacent to other sibling components which make use of the fetched data made available through the global application state. ```jsx import { connect } from 'react-redux'; import QueryJetpackUserConnection from 'calypso/components/data/query-jetpack-user-connection'; import getJetpackUserConnection from 'calypso/state/selectors/get-jetpack-user-connection'; import MyJetpackConnectionDataBlock from './data-block'; function MyJetpackConnectionData( { jetpackConnection } ) { return (
); } export default connect( ( state ) => ( { jetpackConnection: getJetpackUserConnection( state, 12345678 ), } ) )( MyJetpackConnectionData ); ``` ## Props ### `siteId`
TypeNumber
RequiredYes
The site ID for which Jetpack user connection data should be requested.