+
+ {this.props.children}
+
+
+ )
+ }
+}
+
+export default Modal
\ No newline at end of file
diff --git a/src/components/Overlay/Overlay.css b/src/components/Overlay/Overlay.css
new file mode 100644
index 00000000..1895992e
--- /dev/null
+++ b/src/components/Overlay/Overlay.css
@@ -0,0 +1,12 @@
+.Overlay {
+ background: black;
+ position: absolute;
+ opacity: 0.28;
+
+ height: 100%;
+ width: 100%;
+
+ top: 0;
+ left: 0;
+ z-index: 2;
+}
\ No newline at end of file
diff --git a/src/components/Overlay/Overlay.tsx b/src/components/Overlay/Overlay.tsx
new file mode 100644
index 00000000..18f7e0e8
--- /dev/null
+++ b/src/components/Overlay/Overlay.tsx
@@ -0,0 +1,8 @@
+import React from 'react'
+import './Overlay.css'
+
+const Overlay = ({ onClick }) => (
+