import { PLAN_ECOMMERCE, PLAN_BUSINESS, PLAN_PREMIUM, PLAN_PERSONAL, PLAN_FREE, } from '@automattic/calypso-products'; import { get } from 'lodash'; import { connect } from 'react-redux'; import { getCurrentUser } from 'calypso/state/current-user/selectors'; import { getSiteSlug } from 'calypso/state/sites/selectors'; import PlanStorageBar from '../bar'; import PlanStorage from '../index'; const PlanStorageExample = ( { siteId, siteSlug } ) => { const mediaStorage = { red: { storageUsedBytes: 11362335981, maxStorageBytes: 13958643712, }, yellow: { storageUsedBytes: 1971389988, maxStorageBytes: 3221225472, }, green: { storageUsedBytes: 167503724, maxStorageBytes: 3221225472, }, }; if ( ! siteSlug ) { return null; } return (