import PropTypes from 'prop-types';
import React from 'react';
import Button from 'Components/Link/Button';
import { kinds } from 'Helpers/Props';
import styles from './NoArtist.css';
function NoArtist(props) {
const { totalItems } = props;
if (totalItems > 0) {
return (
All artists are hidden due to the applied filter.
);
}
return (
No artists found, to get started you'll want to add a new artist or album or add an existing library location (Root Folder) and update.
);
}
NoArtist.propTypes = {
totalItems: PropTypes.number.isRequired
};
export default NoArtist;