import React from 'react'; import ImmutablePureComponent from 'react-immutable-pure-component'; import { connect } from 'react-redux'; import Sticky from 'react-stickynode'; import PrimaryNavigation from 'soapbox/components/primary_navigation'; import LinkFooter from 'soapbox/features/ui/components/link_footer'; import BundleContainer from 'soapbox/features/ui/containers/bundle_container'; import { WhoToFollowPanel, TrendsPanel, PromoPanel, FeaturesPanel, SignUpPanel, } from 'soapbox/features/ui/util/async-components'; import { getFeatures } from 'soapbox/utils/features'; const mapStateToProps = state => { const me = state.get('me'); const features = getFeatures(state.get('instance')); return { me, showTrendsPanel: features.trends, showWhoToFollowPanel: features.suggestions, }; }; export default @connect(mapStateToProps) class DefaultPage extends ImmutablePureComponent { render() { const { me, children, showTrendsPanel, showWhoToFollowPanel } = this.props; return (