-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.js
More file actions
61 lines (54 loc) · 1.29 KB
/
index.js
File metadata and controls
61 lines (54 loc) · 1.29 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
// let el = React.createElement('ul', {
// className: "some-class"
// }, React.createElement('li', null, "something"));
// let students = [
// {
// "id": 1,
// "name": "shrey"
// },
// {
// "id": 2,
// "name": "vishal"
// },
// {
// "id": 3,
// "name": "tushar"
// },
// ];
// const el2 = <ul>
// {students.map((student) =>
// <li key={student.id}>{student.name}</li>
// )}
// </ul>;
class Student extends React.Component {
render() {
const students = [
{
"id": 1,
"name": "shrey"
},
{
"id": 2,
"name": "vishal"
},
{
"id": 3,
"name": "tushar"
},
];
return (
<ul>
{students.map((student) =>
<li key={student.id}>{student.name}</li>
)}
</ul>
)
}
}
//ReactDOM.render(el2, document.getElementById("root"));
//ReactDOM.render(<Student />, document.getElementById("root"));
ReactDOM.render(<App />, document.getElementById('root'));