import React from 'react'; import PropTypes from 'prop-types'; import {Link} from 'react-router-dom' const SideBarTab = ({tab}) => { return (
  • {tab.tabText} {tab.subList && ()}
  • ); }; SideBarTab.propTypes = { tab: PropTypes.object }; export default SideBarTab;