const React = require('react'); const { Component } = require('react'); const { Text } = require('react-native'); const { connect } = require('remx'); const store = require('./MyStore'); class MyComponent extends Component { static options = { title: 'MyComponent' }; render() { if (this.props.renderCountIncrement) { this.props.renderCountIncrement(); } return this.renderText(this.props.printAge ? this.props.age : this.props.name); } renderText(txt) { return ( {txt} ); } } function mapStateToProps() { return { name: store.getters.getName(), age: store.getters.getAge() }; } module.exports = connect(mapStateToProps)(MyComponent);