Add example usage of app to example page

This commit is contained in:
2017-02-04 22:00:13 -07:00
parent ab7265c25f
commit 9cdee10093
22 changed files with 28214 additions and 2 deletions
+7
View File
@@ -34,6 +34,13 @@ export default function menu(state = initialState, action = {}) {
page: 'help',
subtitle: 'Help',
};
case types.EXAMPLE:
return {
...state,
isOpen: false,
page: 'example',
subtitle: 'Example Usage',
};
default:
return state;
}