import React from 'react' import PropTypes from 'prop-types' import { getRandomInt } from '../../utils/numbers' import PlaceholderLayout from './placeholder_layout' export default class TrendsItemPlaceholder extends React.PureComponent { render() { const title1Width = getRandomInt(280, 330) const title2Width = getRandomInt(200, 305) const title3Width = getRandomInt(100, 220) const subtitle2Width = getRandomInt(140, 240) const subtitle3Width = getRandomInt(120, 225) return (
) } }