2020-02-22 23:26:23 +00:00
|
|
|
import { Fragment } from 'react'
|
|
|
|
import LinkFooter from '../components/link_footer'
|
|
|
|
import WhoToFollowPanel from '../components/panel/who_to_follow_panel'
|
|
|
|
import TrendsPanel from '../components/panel/trends_panel'
|
2020-02-24 21:56:07 +00:00
|
|
|
import SearchLayout from '../layouts/search_layout'
|
2019-07-02 08:10:25 +01:00
|
|
|
|
2019-08-07 06:02:36 +01:00
|
|
|
export default class SearchPage extends PureComponent {
|
|
|
|
render() {
|
2020-02-22 23:26:23 +00:00
|
|
|
const { children } = this.props
|
|
|
|
|
2019-08-07 06:02:36 +01:00
|
|
|
return (
|
2020-02-22 23:26:23 +00:00
|
|
|
<SearchLayout>
|
|
|
|
{children}
|
|
|
|
</SearchLayout>
|
2019-08-07 06:02:36 +01:00
|
|
|
)
|
|
|
|
}
|
2020-02-22 23:26:23 +00:00
|
|
|
}
|