diff --git a/examples/DropdownButton.jsx b/examples/DropdownButton.jsx
index bfbb501..118afbc 100644
--- a/examples/DropdownButton.jsx
+++ b/examples/DropdownButton.jsx
@@ -10,12 +10,38 @@ export default () => (
General
-
-
+ {
+ }}
+ >
+
Large
-
+
Another Action
Something else here
diff --git a/examples/DropdownInDropdown.jsx b/examples/DropdownInDropdown.jsx
new file mode 100644
index 0000000..a4fa258
--- /dev/null
+++ b/examples/DropdownInDropdown.jsx
@@ -0,0 +1,73 @@
+import React from 'react';
+import Section from './Section';
+import Dropdown, { MenuItem } from '../src';
+import styles from './index.styl';
+
+export default () => (
+
+
+
Dropdown In Dropdown
+
+
+ Select an option
+
+
+
+ Menu item one
+ {
+ event.stopPropagation();
+ }}
+ >
+
+
+
+
+ Action
+ Rename
+ Delete
+
+
+
+
+ Menu item two
+ {
+ event.stopPropagation();
+ }}
+ >
+
+
+
+
+ Action
+ Rename
+ Delete
+
+
+
+
+
+
+
+);
diff --git a/examples/index.jsx b/examples/index.jsx
index cb603d9..fda7b03 100644
--- a/examples/index.jsx
+++ b/examples/index.jsx
@@ -6,6 +6,7 @@ import ReactDOM from 'react-dom';
import Nav from './Nav';
import DropdownButton from './DropdownButton';
import DropdownMenu from './DropdownMenu';
+import DropdownInDropdown from './DropdownInDropdown';
import DropdownMenuWrapper from './DropdownMenuWrapper';
import AutoOpen from './AutoOpen';
import Disabled from './Disabled';
@@ -35,6 +36,9 @@ class App extends React.Component {
+
+
+