import { FormattedMessage } from 'react-intl'; import spring from 'react-motion/lib/spring'; import Motion from '../../features/ui/util/optional_motion'; import { searchEnabled } from '../../initial_state'; import './search_popout.scss'; export default class SearchPopout extends PureComponent { static propTypes = { style: PropTypes.object, }; render() { const { style } = this.props; return (
{({ opacity, scaleX, scaleY }) => (

  • #example
  • @username
  • URL
  • URL
{ searchEnabled ? : }
)}
); } }