Skip to content

Instantly share code, notes, and snippets.

@tbvinh
Last active August 14, 2020 06:51
Show Gist options
  • Save tbvinh/a10aaf6e70a990ae30b2963a47b85cad to your computer and use it in GitHub Desktop.
Save tbvinh/a10aaf6e70a990ae30b2963a47b85cad to your computer and use it in GitHub Desktop.
componentDidMount useEffect [hook function react native]
//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