| import { JETPACK_PRODUCTS_LIST, JETPACK_PLANS } from '@automattic/calypso-products'; | |
| import { Component } from 'react'; | |
| import SitesDropdown from 'calypso/components/sites-dropdown'; | |
| import ProductPlanOverlapNotices from '../'; | |
| class ProductPlanOverlapNoticesExample extends Component { | |
| state = { | |
| siteId: 0, | |
| }; | |
| render() { | |
| return ( | |
| <div style={ { maxWidth: 520, margin: '0 auto' } }> | |
| <div style={ { maxWidth: 300, margin: '0 auto 10px' } }> | |
| <SitesDropdown onSiteSelect={ ( siteId ) => this.setState( { siteId } ) } /> | |
| </div> | |
| { this.state.siteId ? ( | |
| <ProductPlanOverlapNotices | |
| plans={ JETPACK_PLANS } | |
| products={ JETPACK_PRODUCTS_LIST } | |
| siteId={ this.state.siteId } | |
| /> | |
| ) : ( | |
| <p style={ { textAlign: 'center' } }> | |
| Please, select a Jetpack site to experience the full demo. | |
| </p> | |
| ) } | |
| </div> | |
| ); | |
| } | |
| } | |
| ProductPlanOverlapNoticesExample.displayName = 'ProductPlanOverlapNotices'; | |
| export default ProductPlanOverlapNoticesExample; | |