1.

What is function based component in React?

Answer»

Basically FUNCTION Based Component are the component which are made by JavaScript Functions.It takes PROPS as argument and return JSX.

Example

Import React from ‘react’;
const XYZ = (props ) => {
     <DIV>
          <h1>React INTERVIEW Questions</h1>
     </div>
}
export default XYZ;



Discussion

No Comment Found