import PropTypes from 'prop-types'; import React from 'react'; import FieldSet from 'Components/FieldSet'; import Link from 'Components/Link/Link'; import PageSectionContent from 'Components/Page/PageSectionContent'; import TagConnector from './TagConnector'; import styles from './Tags.css'; function Tags(props) { const { items, ...otherProps } = props; if (!items.length) { return (
No tags have been added yet. Add tags to link artists with delay profiles, restrictions, or notifications. Click here to find out more about tags in Lidarr.
); } return (
{ items.map((item) => { return ( ); }) }
); } Tags.propTypes = { items: PropTypes.arrayOf(PropTypes.object).isRequired }; export default Tags;