diff --git a/source/developers/development_states.markdown b/source/developers/development_states.markdown
index 4a8d1b81a8f..369f87ea54b 100644
--- a/source/developers/development_states.markdown
+++ b/source/developers/development_states.markdown
@@ -124,13 +124,17 @@ After a start or a restart of Home Assistant the component will be visible in th
+Entities also have a similar property `state_attributes`, which normally doesn't need to be defined by new platforms. This property is used by base components to add standard sets of attributes to a state. Example: The light component uses `state_attributes` to add brightness to the state dictionary. If you are designing a new component, you should define `state_attributes` instead. +
+ To get your component included in the Home Assistant releases, follow the steps described in the [Submitting improvements](https://home-assistant.io/developers/#submitting-improvements) section. Basically you only need to move your component in the `homeassistant/component/` directory of your fork and create a Pull Request.