Body Fit Gym

Chest Build

Exercise Time: 10m

Curling

Exercise Time: 15m

Shoulder Build

Exercise Time: 12m

Thai Build

Exercise Time: 15m

Heavy Weight

Exercise Time: 14m

Chain Up

Exercise Time: 10m

Md. Ashraf Ali

Chattogram, Bangladesh

65kg

Weight

5.5

Height

36yrs

Age

Add a break

Exercise Details

Important Question and Answer About React

1. How does react work?

React reads these objects and uses them to create HTML elements on the virtual DOM, after which it gets synced with the real DOM. So we'll have trees of objects on the virtual DOM and trees of objects on the real DOM. React automatically updates the associated DOM element when we change data on a React element.

2. What are the difference between Props and State?

Props are used to pass data from one component to another. The state is a local data storage that is local to the component only and cannot be passed to other components.

3. What does useEffect use except data load?

useEffect is a basic hook that gets triggered on a combination of 3 React component lifecycles: componentDidMount. componentDid.