diff --git a/docs/07-forms.md b/docs/07-forms.md
index 0ca639b9..935a24d6 100644
--- a/docs/07-forms.md
+++ b/docs/07-forms.md
@@ -81,6 +81,8 @@ An `` that does not supply a `value` (or sets it to `null`) is an *uncont
This will render an input that starts off with an empty value. Any user input will be immediately reflected by the rendered element. If you wanted to listen to updates to the value, you could use the `onChange` event just like you can with controlled components.
+###Default Value
+
If you want to initialize the component with a non-empty value, you can supply a `defaultValue` prop. For example:
```javascript
@@ -89,7 +91,7 @@ If you want to initialize the component with a non-empty value, you can supply a
}
```
-This example will function much like the **Controlled Components** example above.
+This example will function much like the **Controlled Components** example above. *Note:* the `defaultValue` prop is only applied when the component mounts for the first time. If you need to programatically set the initial value of an input as a result of an asynchronous function call, for example, you will have to pass in that initial value with the `value` prop instead.
Likewise, `` supports `defaultChecked` and `