import PropTypes from 'prop-types'; import React from 'react'; import { kinds, sizes } from 'Helpers/Props'; import Label from 'Components/Label'; function ArtistTags({ tags }) { return (
{ tags.map((tag) => { return ( ); }) }
); } ArtistTags.propTypes = { tags: PropTypes.arrayOf(PropTypes.string).isRequired }; export default ArtistTags;