From 81e1e077850accfc166fe10be5e0ddc9435219b6 Mon Sep 17 00:00:00 2001 From: Rafal Wilinski Date: Thu, 8 Sep 2016 13:58:56 +0100 Subject: [PATCH] Fix syntax error in example (#1140) Add missing `)` in drawer example. --- docs/OTHER_INFO.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/OTHER_INFO.md b/docs/OTHER_INFO.md index 988136154..8f4221b88 100644 --- a/docs/OTHER_INFO.md +++ b/docs/OTHER_INFO.md @@ -157,7 +157,7 @@ export default class extends Component { // then you could open/hide/toggle drawer anywhere using 'refresh' modifiers: - Actions.refresh({key: 'drawer', open: value => !value }; + Actions.refresh({key: 'drawer', open: value => !value }); ``` ## Sub-scenes support You could create 'sub-scene' actions by putting them as children for needed 'base' scene without `component` prop and call such action anywhere - 'base' Scene will be updated accordingly.