It is also called as Stateless Components. These types components have no state of their own and only contain render methods. They may derive data from other components as props.
Key Points:
- Functional components can not hold state or manage state.
- Do not have direct access for life cycle methods.
- Hooks used to access the life cycle methods in functional components.
0 Comments
Post a Comment