You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/frontend/src/Album/AlbumFormats.js

34 lines
621 B

import PropTypes from 'prop-types';
import React from 'react';
import Label from 'Components/Label';
import { kinds } from 'Helpers/Props';
function AlbumFormats({ formats }) {
return (
<div>
{
formats.map((format) => {
return (
<Label
key={format.id}
kind={kinds.INFO}
>
{format.name}
</Label>
);
})
}
</div>
);
}
AlbumFormats.propTypes = {
formats: PropTypes.arrayOf(PropTypes.object).isRequired
};
AlbumFormats.defaultProps = {
formats: []
};
export default AlbumFormats;