import React, { PropTypes } from 'react'
import { SearchBar } from '../../../index'

const propTypes = {
  className: PropTypes.string,
}

const CustomSearchBar = ({ className }) =>
  <SearchBar className={className} to="/home" />

CustomSearchBar.propTypes = propTypes

export default CustomSearchBar
