import React from 'react'; import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import Header from '../features/search/components/header'; import WhoToFollowPanel from '../features/ui/components/who_to_follow_panel'; import LinkFooter from '../features/ui/components/link_footer'; import SignUpPanel from '../features/ui/components/sign_up_panel'; import { getFeatures } from 'soapbox/utils/features'; const mapStateToProps = state => ({ features: getFeatures(state.get('instance')), }); const SearchPage = ({ children, features }) => (