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
Post a Comment