import React from 'react'; import PropTypes from 'prop-types'; import { FormattedMessage } from 'react-intl'; import Column from 'soapbox/features/ui/components/column'; import Button from 'soapbox/components/button'; import FollowRecommendationsList from './components/follow_recommendations_list'; export default class FollowRecommendations extends React.Component { static contextTypes = { router: PropTypes.object.isRequired, }; handleDone = () => { const { router } = this.context; router.history.push('/'); } render() { return (

); } }