Skip to content

Creating a react clock app with the concepts of Component life cycle

Notifications You must be signed in to change notification settings

reddy-epk/clock-app

Repository files navigation

Building a show/hide-Clock app.

Set Up Instructions

Click to view
  • Download dependencies by running npm install
  • Start up the app using npm start

Component Life Cycle topics in this module

  • Mounting Phase
    • constructor()
    • render()
    • componentDidMount()
  • Updating Phase
    • render()
  • Unmounting phase
    • componentWillUnmount()
  • Behind the scenes
    • Virtual DOM