Created
October 2, 2017 06:52
-
-
Save ysfzrn/d31f41969c69980c5ae40718ba96934e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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