import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; import { Nav as BsNav } from 'reactstrap'; const Nav = ({ accent, className, ...otherProps }) => { return ( ); }; Nav.propTypes = { ...BsNav.propTypes, accent: PropTypes.bool, }; Nav.defaultProps = { accent: false }; export { Nav };