import React from 'react'; import PlaceholderAccount from './placeholder_account'; import { randomIntFromInterval, generateText } from '../utils'; export default class PlaceholderNotification extends React.Component { shouldComponentUpdate() { // Re-rendering this will just cause the random lengths to jump around. // There's basically no reason to ever do it. return false; } render() { return (
{generateText(randomIntFromInterval(15, 30))}
); } }