diff --git a/platform/ui/src/components/Dropdown/Dropdown.mdx b/platform/ui/src/components/Dropdown/Dropdown.mdx
index 087877f56..dc4b02555 100644
--- a/platform/ui/src/components/Dropdown/Dropdown.mdx
+++ b/platform/ui/src/components/Dropdown/Dropdown.mdx
@@ -5,11 +5,13 @@ route: components/dropdown
---
import { Playground, Props } from 'docz';
-import { Dropdown } from '@ohif/ui';
+import { Dropdown, IconButton, Icon } from '@ohif/ui';
# Dropdown
-...
+This component is used when there are more than a few options to choose from. By
+hovering or clicking on the trigger, a dropdown menu will appear, which allows
+you to choose an option and execute the relevant action.
## Import
@@ -17,6 +19,50 @@ import { Dropdown } from '@ohif/ui';
import { Dropdown } from '@ohif/ui';
```
+
+ {() => {
+ const handleClick = () => {
+ alert("Clicked");
+ }
+ return (
+
+
+
+
+
+
+
+
+
+
+ );
+ }}
+
+
## Properties
-
+