import { Nav, Navbar } from 'react-bootstrap' import { NavPrice, NavWalletSummary, Sorts, hasNavSelect } from '../common' import styles from '../../header.module.css' import { useMe } from '@/components/me' export default function SecondBar (props) { const me = useMe() const { topNavKey } = props if (!hasNavSelect(props)) return null return ( ) }