diff --git a/src/components/Video.js b/src/components/Video.js
new file mode 100644
index 000000000..ebe658f06
--- /dev/null
+++ b/src/components/Video.js
@@ -0,0 +1,22 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+import styles from './Video.module.scss';
+
+const Video = ({ youtubeId }) => (
+
+
+
+);
+
+Video.propTypes = {
+ // NOTE: we should expand this allow for other video sources in the future
+ youtubeId: PropTypes.string.isRequired,
+};
+
+export default Video;
diff --git a/src/components/Video.module.scss b/src/components/Video.module.scss
new file mode 100644
index 000000000..d370cfd84
--- /dev/null
+++ b/src/components/Video.module.scss
@@ -0,0 +1,9 @@
+.Video {
+ max-width: 560px;
+ margin: 1rem 0;
+
+ iframe {
+ width: 100%;
+ height: 315px;
+ }
+}