diff --git a/docs/src/ComponentsPage.js b/docs/src/ComponentsPage.js
index 65bd2e50b5..3c37d256b8 100644
--- a/docs/src/ComponentsPage.js
+++ b/docs/src/ComponentsPage.js
@@ -788,8 +788,24 @@ const ComponentsPage = React.createClass({
+ A Component that renders its children into a new React "subtree" or container
. The Portal component kind of like the React
+ equivillent to jQuery's .appendTo()
, which is helpful for components that need to be appended to a DOM node other than
+ the component's direct parent. The Modal, and Overlay components use the Portal component internally.
+