Loading..

What is Components in React ?

What is Components in React ?

What is Components in React ?

Components are reusable pieces of a user interface.

A component is like a reusable piece of UI that contains:

  • HTML structure (JSX)
  • Logic (JavaScript)
  • Styling (CSS)
React Component

In the above code:

  • export default – Make sure your function component is exported from that file so other files can use it.
  • Logic (JavaScript)
  • Styling (CSS)
scroll to top