Skip to content
This repository was archived by the owner on Sep 15, 2022. It is now read-only.

Commit ccf8e99

Browse files
committed
Merge branch 'master' of github.com:krambertech/react-essential-course
2 parents d0aee3f + 7387f00 commit ccf8e99

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

01-introduction-to-react/01-using-props/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
<HelloWorld name="Nastya" action="eating"/>
2424
<HelloWorld name="Katya" action="football"/>
2525
<HelloWorld name="Vasya" action="walking"/>
26-
<HelloWorld name="Ivan" action="swiming"/>
26+
<HelloWorld name="Ivan" action="swimming"/>
2727
</div>,
2828
document.getElementById("content")
2929
);
3030
</script>
3131

3232
</body>
33-
</html>
33+
</html>

01-introduction-to-react/README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,9 @@ var app = <h1>
7878
```jsx
7979
var age = 20;
8080

81-
var app = <h1> Hi! { age > 18 ? 'Your age is more than 18!' : 'Your age is less than 18!' } </h1>;
81+
var app = <h1>
82+
Hi! { age > 18 ? 'Your age is more than 18!' : 'Your age is less than 18!' }
83+
</h1>;
8284
```
8385

8486
#### Компоненты

0 commit comments

Comments
 (0)