-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathReactJS_Intro.txt
523 lines (347 loc) · 9.02 KB
/
ReactJS_Intro.txt
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
We require mainly 2 appl softwares.
1. node.js installation
2. visual studio code
react or react.js or react.jsx
How to create a project in ReactJs:
----------------------------------------
here we follows the given steps
step1: we create a one folder in any other drive name
D:\>test_reactjs
step2: open vscode from file menu select open folder option
step3: select our folder name in the existing path
step4: from the menu select terminal option
step5:from the terminal path create reactjs project in the following way
npx create-react-app projectname
Ex: npx create-react-app react_demo
OR
-->npm cache clean --force
-->npm install npm@latest -g
-->npm install
-->npx create-react-app react_demo
OR -->npm install -g create-react-app
npx create-react-app react_demo
step6: enter into our reactjs project we type as follows
d:>test_react>
d:>test_react>cd react_demo
d:>test_reat>react_demo>-
step7: we will start the project
npm start
How in react it display content on Browser:
----------------------------------------
By default the data flow from
app.js file -->index.js -->index.html
OR
index.js->index.html
Introduction:
----------------
react or reactjs or react.js
it is an open source front end application depends on javscript
library.
Developed by Facebook organization,
" Jordan walke " in the year 2013.
reactjs Angular vue
using reactjs application we develop user interface concepts on a webpage.
React is not a framework , Angular we say that it is a framework,
React js open source application,
react js application useful for to develop user interface concepts
Features of React Js application:
-----------------------------------------
->it follows jsx concept (javascript xml synatx)
->react js application we called as component based application
(Single page application)
here we reused same components in the application
-> Uni directional based application (One directional flow of data)
jsx (javascript xml)
--------------------------------
jsx stands for javscript xml.
jsx allows us to write HTML in React
jsx makes it easier to write and edit HTML in React.
Babel Compiler:
-----------------------------
In Reactjs here babel is called as javascript compiler .
it converts javscript library code into html code.
here babel it converst JSX code into normal html code.
JSX code:
==========================================
index.js
---------------------------------------------------------------------
import React from 'react';
import ReactDOM from 'react-dom';
ReactDOM.render( <h1>Hello World</h1>, document.getElementById('root'));
index.html
-----------------------------------
<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>
<div id="root"></div>
</body>
</html>
div tag in jsx:
-----------------------------------------------------------------------
in ReactDOM whenever we add multiple elements or tags
then we should include <div> tag.
import React from 'react';
import ReactDOM from 'react-dom';
ReactDOM.render( <div><h1>Hello World</h1> <p>welcome to react</p></div>, document.getElementById('root'));
Expressions inJSX:
-------------------------------------
we need to add expression jsx then we should include
inside of the curly brackets.
{}
import React from 'react'
import ReactDOM from 'react-dom'
ReactDOM.render( <h2>shravan {2+4}</h2>, document.getElementById('root'));
Ex2:
----------------------
import React from 'react'
import ReactDOM from 'react-dom'
const name='corporate Trainer'
ReactDOM.render( <h2>shravan {name}</h2>, document.getElementById('root'));
-----------------------------
Ex3:
import React from 'react'
import ReactDOM from 'react-dom'
const name=(
<ul>
<ol>Apples</ol>
<ol>Mangos</ol>
<ol>Cherris</ol>
</ul>
)
ReactDOM.render( <h2>{name}</h2>, document.getElementById('root'));
Ex4:
------------------------------------
import React from 'react'
import ReactDOM from 'react-dom'
const name=(
<table border="1">
<thead>
<th>Employee Name</th>
<th>Employee Designation</th>
</thead>
<tbody>
<tr>
<td>Shravan Kumar</td>
<td>Corporate Trainer</td>
</tr>
<tr>
<td>Kumar</td>
<td>developer</td>
</tr>
</tbody>
</table>
)
ReactDOM.render( <h2>{name}</h2>, document.getElementById('root'));
components in React Js:
-----------------------------
component is one of the part or position on web page.
in react js to create a component then user follows in
2 ways.
1. fucntional components
2. class components
1. fucntion components:
-----------------------------------------
App.js
-------------------
import React from 'react'
import Test from './components/Test'
import Test1 from './components/Test1'
export default function App()
{
return(
<div>
<h2>welcome to functional component</h2>
<Test></Test>
<Test1></Test1>
</div>
)
}
in this example i create one folder under src
i.e components
inside of this components folder we creted two child functional components.
Test1.js
----------------
import React from 'react'
function Test1()
{
return(
<h2>child 1 component</h2>
)
}
export default Test1
Test.js
----------
import React from 'react'
function Test()
{
return(
<h2>this is child component</h2>
)
}
export default Test
index.js
-------------------------------
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
);
reportWebVitals();
Example2:
-----------------------
App.js
--------
import React from 'react'
import Table from './components/Table'
function App()
{
return (
<div>
<h1>This is Root component in React</h1>
<Table></Table>
</div>
)
}
export default App
Table.js
---------------------------
import TableHeader from './TableHeader'
import TableBody from './TableBody'
import React from 'react'
export default function Table()
{
return(
<div>
<table border="2">
<TableHeader></TableHeader>
<TableBody></TableBody>
</table>
</div>
)
}
TableHeader.js
------------------
import React from 'react'
export default function TableHeader()
{
return (
<thead>
<th>Employee Name</th>
<th>Employee Designation</th>
</thead>
)
}
TableBody.js
---------------------
import React from 'react'
export default function TableBody()
{
return(
<tbody>
<tr>
<td>Shravan</td>
<td>Trainer</td>
</tr>
</tbody>
)
}
Arrow function in React:
--------------------------------
import TableHeader from './TableHeader'
import TableBody from './TableBody'
import React from 'react'
const Table=()=>
{
return(
<div>
<table border="2">
<TableHeader></TableHeader>
<TableBody></TableBody>
</table>
</div>
)
}
export default Table
2. Class Component:
--------------------------------------
syntax:
import React ,{ Component} from 'react';
class classname extends Component{
render()
{
return(
jsx code
)
}
}
export default classname;
App.js
---------------
import React from 'react'
import Table from './components/Table'
function App()
{
return (
<div>
<h1>This is Root component in React</h1>
<Table></Table>
</div>
)
}
export default App
Table.js
-----------------
import React,{Component} from 'react'
import TableHeader from './TableHeader'
import TableBody from './TableBody'
class Table extends Component{
render()
{
return(
<table border="2">
<TableHeader></TableHeader>
<TableBody></TableBody>
</table>
)
}
}
export default Table
TableBody.js
-----------------------------------------------
import React, {Component} from 'react'
export default class TableBody extends Component
{
render()
{
return (
<tbody>
<tr>
<td>Shravan</td>
<td>Corporate Traier</td>
</tr>
</tbody>
)
}
}
TableHeader.js
----------------------------------------------------
import React, { Component } from 'react'
export default class TableHeader extends Component{
render()
{
return(
<thead>
<th>Employee Name</th>
<th>Employee Designation</th>
</thead>
)
}
}