Skip to content

Instantly share code, notes, and snippets.

@DownChapel
DownChapel / FirstScreen.js
Last active March 12, 2016 14:07
componentWillUnmount in React Native Redux NavigationExperimental
class FirstScreen extends Component {
componentDidMount() {
console.log("First componentDidMount");
}
componentWillUnmount() {
console.log("First componentWillUnmount");
}
render() {
return (
<View style={styles.container}>