“In React, everything is a component.” Explain.
Components are the building blocks of a React application's UI.
These components split up the entire UI into small independent and reusable pieces.
Then it renders each of these components independent of each other
without affecting the rest of the UI
//Use a pure stateless component
export const myComponent = () => return ()
// Stateful
export class myComponent extends React.Component {
//use Hooks for more comfort
...
}
Components are independent and reusable bits of code.