import {NumberContainer} from 'sentry/utils/discover/styles'; import ResourceSize from 'sentry/views/performance/browser/resources/shared/resourceSize'; type Props = { bytes?: number; }; function ResourceSizeCell(props: Props) { const {bytes} = props; return ( ); } export default ResourceSizeCell;