import React from 'react'; import { connect } from 'react-redux'; import ImmutablePureComponent from 'react-immutable-pure-component'; import WhoToFollowPanel from 'soapbox/features/ui/components/who_to_follow_panel'; import TrendsPanel from 'soapbox/features/ui/components/trends_panel'; import PromoPanel from 'soapbox/features/ui/components/promo_panel'; import FeaturesPanel from 'soapbox/features/ui/components/features_panel'; import LinkFooter from 'soapbox/features/ui/components/link_footer'; import { getFeatures } from 'soapbox/utils/features'; const mapStateToProps = state => { const features = getFeatures(state.get('instance')); return { showTrendsPanel: features.trends, showWhoToFollowPanel: features.suggestions, }; }; export default @connect(mapStateToProps) class DefaultPage extends ImmutablePureComponent { render() { const { children, showTrendsPanel, showWhoToFollowPanel } = this.props; return (