// @flow import type { Node } from 'react'; import * as React from 'react'; import classnames from 'classnames'; import { YRBL_HAPPY_IMG_URL, YRBL_SAD_IMG_URL } from 'config'; type Props = { title?: string, subtitle?: string | React.Node, type: string, className?: string, actions?: Node, alwaysShow?: boolean, }; const yrblTypes = { happy: YRBL_HAPPY_IMG_URL, sad: YRBL_SAD_IMG_URL, }; export default class extends React.PureComponent { static defaultProps = { type: 'happy', }; render() { const { title, subtitle, type, className, actions, alwaysShow = false } = this.props; const image = yrblTypes[type]; return (
Friendly gerbil
{(title || subtitle) && (

{title}

{subtitle}

)} {actions}
); } }