Skip to content

Commit

Permalink
Fix syntax error in example (#1140)
Browse files Browse the repository at this point in the history
Add missing `)` in drawer example.
  • Loading branch information
RafalWilinski authored and charpeni committed Sep 8, 2016
1 parent d29eacc commit 81e1e07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/OTHER_INFO.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export default class extends Component {
</Scene>

// 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.
Expand Down

0 comments on commit 81e1e07

Please sign in to comment.