Skip to content

Instantly share code, notes, and snippets.

@ysfzrn
Created October 2, 2017 06:52
Show Gist options
  • Save ysfzrn/d31f41969c69980c5ae40718ba96934e to your computer and use it in GitHub Desktop.
Save ysfzrn/d31f41969c69980c5ae40718ba96934e to your computer and use it in GitHub Desktop.
import { observer } from "mobx-react/native";
import TodoStore from './store'
@observer
export default class hellomobx extends Component {
render() {
console.log(this.props);
return (
<View style={styles.container}>
<Text>{TodoStore.selectedStatus}</Text>
</View>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment