Last active
August 14, 2020 06:51
-
-
Save tbvinh/a10aaf6e70a990ae30b2963a47b85cad to your computer and use it in GitHub Desktop.
componentDidMount useEffect [hook function react native]
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
//Component type: | |
import React, { Component } from 'react' | |
export default class SampleComponent extends Component { | |
componentDidMount() { | |
// code to run on component mount | |
} | |
render() { | |
return (<div>foo</div>) | |
} | |
} | |
//Hook Function: | |
import React, { useEffect } from 'react' | |
const SampleComponent = () => { | |
useEffect(() => { | |
// code to run on component mount | |
}, []) | |
return (<div>foo</div>) | |
} | |
export SampleComponent |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment