parent
02efc655f9
commit
0039c1c393
@ -0,0 +1,29 @@
|
|||||||
|
import PropTypes from 'prop-types';
|
||||||
|
import React from 'react';
|
||||||
|
import { kinds } from 'Helpers/Props';
|
||||||
|
import Label from 'Components/Label';
|
||||||
|
|
||||||
|
function MovieFormats({ formats }) {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
{
|
||||||
|
formats.map((format) => {
|
||||||
|
return (
|
||||||
|
<Label
|
||||||
|
key={format.id}
|
||||||
|
kind={kinds.INFO}
|
||||||
|
>
|
||||||
|
{format.name}
|
||||||
|
</Label>
|
||||||
|
);
|
||||||
|
})
|
||||||
|
}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
MovieFormats.propTypes = {
|
||||||
|
formats: PropTypes.arrayOf(PropTypes.object).isRequired
|
||||||
|
};
|
||||||
|
|
||||||
|
export default MovieFormats;
|
Loading…
Reference in new issue