Create New React Component Code Example


Example 1: create react component class

class MyComponent extends React.Component{     constructor(props){         super(props);     };     render(){         return(             <div>               <h1>               	My First React Component!               </h1>             </div>         );     } };

Example 2: how to create component in reactjs

class Car extends React.Component {   render() {     return <h2>Hi, I am a Car!</h2>;   } }

Example 3: functional components react

function Comment(props) {   return (     <div className="Comment">       <div className="UserInfo">         <img className="Avatar"           src={props.author.avatarUrl}           alt={props.author.name}         />         <div className="UserInfo-name">           {props.author.name}         </div>       </div>       <div className="Comment-text">         {props.text}       </div>       <div className="Comment-date">         {formatDate(props.date)}       </div>     </div>   ); }

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?