# Query Intro Offers `` is a React component used in managing network requests product introductory offers. ## Usage Render the component, passing in the properties below. It does not accept any children, nor does it render any elements to the page. ```tsx /* eslint-disable */ import QueryIntroOffers from 'calypso/components/data/query-intro-offers'; import getIntroOfferPrice from 'calypso/state/selectors/get-intro-offer-price'; const listProductPrice: React.FC = ( { siteId, productId, productPrice } ) => { const introOfferPrice = useSelector( ( state ) => getIntroOfferPrice( state, productId, siteId ) ); return (
{ introOfferPrice ?? productPrice }
); }; ``` ## Props ### `siteId`
TypeNumber
RequiredYes
The ID of the site to fetch the introductory offers for.