diff --git a/client/components/Dropdown.jsx b/client/components/Dropdown.jsx
new file mode 100644
index 00000000..9e2526bd
--- /dev/null
+++ b/client/components/Dropdown.jsx
@@ -0,0 +1,62 @@
+import PropTypes from 'prop-types';
+import React from 'react';
+import { Link } from 'react-router';
+
+
+//
+
+
+//
+
+// -
+//
+//
+// -
+//
+//
+// -
+//
+//
+//
+
+const Dropdown = ({ items }) => (
+
+ {items && items.map(item => (
+ -
+
+ ))
+ }
+
+);
+
+Dropdown.propTypes = {
+ items: PropTypes.arrayOf(PropTypes.shape({
+ action: PropTypes.func
+ }))
+};
+
+Dropdown.defaultProps = {
+ items: []
+};
+
+export default Dropdown;