Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Web Technology by (55.6k points)

Can anyone please explain the component with an example in React JS?

1 Answer

0 votes
by (119k points)
edited by

A component in React JS is just like the functions we use in JavaScript but return HTML by using render function

Components are of two types such as Class components and Function components

Example of Class Component in React JS: 

class Potato extends React.Component {

 render() {

    return <h2>Hi, I am a Potato!</h2>;

 }

}

Example of function component in React JS:

function Potato() {  

return <h2>Hi, I am also a Potato!</h2>;

}

In case you are interested to learn web development, you can take up this Web development course by Intellipaat

Do check out this Full Stack Developer Online Course to help you enhance your career.

You can watch this video on React JS course for beginners to learn about components with example in React JS:

Thinking of getting a certification in React JS? Here is the React Course for you to enroll in!

Related questions

0 votes
1 answer
asked Mar 27, 2020 in Web Technology by Sudhir_1997 (55.6k points)
0 votes
1 answer
asked Mar 27, 2020 in Web Technology by Sudhir_1997 (55.6k points)
0 votes
1 answer
asked Nov 4, 2020 in Web Technology by Sudhir_1997 (55.6k points)
0 votes
1 answer
asked Mar 27, 2020 in Web Technology by Sudhir_1997 (55.6k points)
0 votes
1 answer
asked Nov 4, 2020 in Web Technology by Sudhir_1997 (55.6k points)

Browse Categories

...