{
!!rejections.length &&
diff --git a/frontend/src/Movie/MovieFormats.js b/frontend/src/Movie/MovieFormats.js
new file mode 100644
index 000000000..54984454f
--- /dev/null
+++ b/frontend/src/Movie/MovieFormats.js
@@ -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 (
+
+ {
+ formats.map((format) => {
+ return (
+
+ );
+ })
+ }
+
+ );
+}
+
+MovieFormats.propTypes = {
+ formats: PropTypes.arrayOf(PropTypes.object).isRequired
+};
+
+export default MovieFormats;