how to install a react app with yarn code example
Example 1: yarn create react app
// Go into the folder where you wish to create your app
yarn create react-app appname
Example 2: create-react-app use npm
create-react-app my-project --use-npm
// Go into the folder where you wish to create your app
yarn create react-app appname
create-react-app my-project --use-npm