import React from 'react'; import Media from 'react-media'; import { Col, Navbar, Row } from 'react-bootstrap'; import FCCSearchBar from 'react-freecodecamp-search'; import { NavLogo, BinButtons, NavLinks } from './components'; import propTypes from './navPropTypes'; function SmallNav({ clickOnLogo, clickOnMap, shouldShowMapButton, panes }) { return ( { matches => matches && typeof window !== 'undefined' && (
) }
); } SmallNav.displayName = 'SmallNav'; SmallNav.propTypes = propTypes; export default SmallNav;