import React from 'react'; import { FormattedMessage } from 'react-intl'; import { Button } from 'soapbox/components/ui'; import FollowRecommendationsList from './follow_recommendations_list'; interface IFollowRecommendationsContainer { onDone: () => void, } const FollowRecommendationsContainer: React.FC = ({ onDone }) => (

); export default FollowRecommendationsContainer;