DEV Community

Discussion on: Learn React in Plain English

 
cariehl profile image
Cooper Riehl

@ivanjeremic Thanks for the comment! Could you give me an example where I might need to use a class component instead of a function component? Are class components only necessary when I want to implement additional functionality for the component, such as (not sure if this is the right term to use) React hooks?

Thread Thread
 
ivan_jrmc profile image
Ivan Jeremic

React hooks are used only in function components and do not work in class components. So all you need is to learn how hooks work.