react project tutorial code example
Example 1: command to create react app
npx create-react-app my-app
cd my-app
npm start
Example 2: how to create a new react app
npx create-react-app your-project-name
Example 3: reactjs basic example
// -------// -------// -------
// index.js
// -------// -------// -------
const user = {
name: "zidane",
email: '[email protected]'
};
const element = {user.name} exist email: {user.email}
;
const element2 =
{user.name}
{user.email}
;
var numbers = [1,2,3,4];
var doubleNumbers = numbers.map(function(num){
return num * 2 + "; ";
})
var doubleNumberArrowFunction = numbers.map((num) => num * 3 + "; ");
var element3 =
Double numbers: {doubleNumberArrowFunction}
;
ReactDOM.render(
element3,
//
//
// ,
document.getElementById('root')
);
// -------// -------// -------
// ------- index.css ------
// -------// -------// -------
.heading {
padding: 10px;
color: white;
background-color: green;
}
Example 4: react quick tutorial
ReactDOM.render(
,
document.getElementById("root")
);