react get started code example
Example 1: create react app
npx create-react-app my-app
cd my-app
npm start
Example 2: install react yarn
yarn create react-app my-appCopied
Example 3: yarn react install
There are two ways where you can initiate a REACT app..
1. Using npm : npm init react-app <app_name>
example : npm init react-app sampleApp
2. Using yarn : yarn create react-app <app_name>
example : yarn create react-app sampleApp
Example 4: react js documentation
npx create-react-app my-app-name
npx create-react-app my-app-name --npm
npx create-react-app my-app-name --template typescript
yarn start
Example 5: react quick tutorial
ReactDOM.render(
<Hello />,
document.getElementById("root")
);
Example 6: create tic tac toe game in react using jsx files
useEffect(()=>{
for (let i = 0; i <= 2; i++){
const idx = (i % 3) * 3
if ( (table[idx] + table[idx+1] + table[idx+2] )=== 9 || (table[idx] + table[idx+1] + table[idx+2] ) === 15){
setWinner([idx,idx+1,idx+2])
gameOver()
}
if ((table[i] + table[i+3] + table[i+6] )=== 9 || (table[i] + table[i+3] + table[i+6] ) === 15){
setWinner([i,i+3,i+6])
gameOver()
}
}
if ((table[0] + table[4] + table[8] ) === 15 || (table[0] + table[4] + table[8] ) === 9 ){
setWinner([0, 4, 8])
gameOver()
}
if ((table[2] + table[4] + table[6] ) === 9 || (table[2] + table[4] + table[6] ) ===15){
setWinner([2, 4, 6])
gameOver()
}
if (table.indexOf(0) === -1){
gameOver()
}
}, [table])