import PropTypes from 'prop-types'; import React from 'react'; import Alert from 'Components/Alert'; import Icon from 'Components/Icon'; import Button from 'Components/Link/Button'; import ModalBody from 'Components/Modal/ModalBody'; import ModalContent from 'Components/Modal/ModalContent'; import ModalFooter from 'Components/Modal/ModalFooter'; import ModalHeader from 'Components/Modal/ModalHeader'; import { icons, kinds } from 'Helpers/Props'; import styles from './OrganizeArtistModalContent.css'; function OrganizeArtistModalContent(props) { const { artistNames, onModalClose, onOrganizeArtistPress } = props; return ( Organize Selected Artist Tip: To preview a rename... select "Cancel" then click any artist name and use the
Are you sure you want to organize all files in the {artistNames.length} selected artist?
); } OrganizeArtistModalContent.propTypes = { artistNames: PropTypes.arrayOf(PropTypes.string).isRequired, onModalClose: PropTypes.func.isRequired, onOrganizeArtistPress: PropTypes.func.isRequired }; export default OrganizeArtistModalContent;