Start React App

npm install create-react-app -g

create-react-app app-name

npx create-react-app app-name

create-react-app

ملفات الريأكت

react

react-dom

Babel

.............

JSX inline Style

<div style="background-color: darkblue"></div>

<div style={{ backgroundColor:  'darkblue' }}></div>

HTML

JSX

JSX className

<div class="main-header"></div>

<div className="main-header"></div>

HTML

JSX

JSX htmlFor

<label for="input-id"></label>

<label htmlFor="nput-id"></label>

HTML

JSX

JSX and React

By Hossam Mo

JSX and React

  • 205