Select Today's Workout

DUMBLE

Rubber Coated Hex Dumbbell is made of solid cast iron core to help provide strength and prevent damage to floors an.

For Age: 20-30

Time required : 20s

WEIGHT PLATE

Specifically designed to make lifting and loading the weights onto the bars easier, the fabulous rubber coating pro

For Age: 25-40

Time required : 20s

KETTLEBELL

This kettlebell, KBV001, is made of vinyl coating, which protects the floor, reduces noise, prevents corrosion

For Age: 18-50

Time required : 50s

RESISTANCE BAND

Resistance Loop Exercise Bands, RB01, are thoroughly tested before releasing it to the customers. To make sure that

For Age: 20-30

Time required : 20s

AIR BIKE

Air Bike is a stationary bike that offers a full-body workout. The seat and handlebar can be easily adjusted depend

For Age: 25-50

Time required : 20s

PLATE LOADED

Yanre Fitness’ 82021 hammer strength jammer is used in building strength and work need to balance for health

For Age: 20-30

Time required : 20s

Salma Akter

Dhaka Bangladesh

55 kg

Weight

5.2

Height

22 yrs

Weight

Add A Break

Exercise Details

Excersize time

0 seconds

Break time

0 seconds

Some Common Thing to Know About React

ReactJS is one of the most popular JavaScript libraries for mobile and web application development. Created by Facebook, React contains a collection of reusable JavaScript code snippets used for user interface (UI) building called components. It’s important to note that ReactJS is not a JavaScript framework. That’s because it’s only responsible for rendering the components of an application’s view layer. React is an alternative to frameworks like Angular and Vue, which all allow to create complex functions. This article will explore React’s features, explain how it works, and go over its benefits for front-end developers. We’ll also cover the differences between ReactJS and React Native regarding their roles in the web and mobile app development industry.

tl;dr: If a Component needs to alter one of its attributes at some point in time, that attribute should be part of its state, otherwise it should just be a prop for that Component., props props (short for properties) are a Component's configuration, its options if you may. They are received from above and immutable as far as the Component receiving them is concerned. A Component cannot change its props, but it is responsible for putting together the props of its child Components. state The state starts with a default value when a Component mounts and then suffers from mutations in time (mostly generated from user events). It's a serializable* representation of one point in time—a snapshot. A Component manages its own state internally, but—besides setting an initial state—has no business fiddling with the state of its children. You could say the state is private. * We didn't say props are also serializable because it's pretty common to pass down callback functions through props.

The useEffect Hook allows you to perform side effects in your components. Some examples of side effects are: fetching data, directly updating the DOM, and timers. useEffect accepts two arguments. The second argument is optional.
@Author reserved to Salma Akter 2022