componentDidMount()
import { Component } from 'react'
class LifeCycle extends Component {
componentDidMount(){
console.log("component life cycle start")
}
render(){
return (
<div>LifeCycle</div>
)
}
}
export default LifeCycleLast updated