2020-08-17 21:07:16 +01:00
|
|
|
import React from 'react'
|
2020-08-17 21:59:29 +01:00
|
|
|
import PropTypes from 'prop-types'
|
2020-10-31 23:37:15 +00:00
|
|
|
import SearchLayout from '../layouts/search_layout'
|
2019-07-02 08:10:25 +01:00
|
|
|
|
2020-08-17 21:07:16 +01:00
|
|
|
class SearchPage extends React.PureComponent {
|
2020-04-16 07:00:43 +01:00
|
|
|
|
2020-08-14 18:45:59 +01:00
|
|
|
render() {
|
2020-10-31 23:37:15 +00:00
|
|
|
const { children } = this.props
|
2020-07-16 05:05:08 +01:00
|
|
|
|
2019-08-07 06:02:36 +01:00
|
|
|
return (
|
2020-10-31 23:37:15 +00:00
|
|
|
<SearchLayout>
|
2020-02-22 23:26:23 +00:00
|
|
|
{children}
|
2020-10-31 23:37:15 +00:00
|
|
|
</SearchLayout>
|
2019-08-07 06:02:36 +01:00
|
|
|
)
|
|
|
|
}
|
2020-04-16 07:00:43 +01:00
|
|
|
|
2020-08-14 18:45:59 +01:00
|
|
|
}
|
|
|
|
|
2020-10-31 23:37:15 +00:00
|
|
|
export default SearchLayout
|