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