import './Subnav.scss'; import React, { Component } from 'react'; import { Link } from 'react-router-dom'; import PropTypes from 'prop-types'; import { Menu } from 'antd'; class Subnav extends Component { constructor(props) { super(props) } static propTypes = { data: PropTypes.array, default: PropTypes.string } render () { return (
{this.props.data.map((item, index) => { return ( {this.props.data[index].name} ) })}
) } } export default Subnav;