-
Notifications
You must be signed in to change notification settings - Fork 0
/
reactTut4.js
35 lines (30 loc) · 955 Bytes
/
reactTut4.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// // Props
// // Properties are like dynamic value
// import React from "react";
// import ReactDOM from 'react-dom';
// // function Employee(props){
// // return<div>
// // <h1>Hello {props.name1} Side</h1>
// // <h1>Hello {props.name2} Side</h1>
// // <h1>Hello {props.name3} Side</h1>
// // </div>
// // }
// // OR
// // const Employee=(props)=>{
// // return<div>
// // <h1>Hello {props.name1} Side</h1>
// // <h1>Hello {props.name2} Side</h1>
// // <h1>Hello {props.name3} Side</h1>
// // </div>
// // }
// // This is class Component and propes are used here
// class Employee extends React.Component{
// render(){
// return <div>
// <h1>Hello {this.props.name1} Side</h1>
// <h1>Hello {this.props.name2} Side</h1>
// <h1>Hello {this.props.name3} Side</h1>
// </div>
// }
// }
// ReactDOM.render(<Employee name1="lakshay" name2="Rahul" name3="manav"/>,document.getElementById('root'));