Answers for "create app with a specific react version"

0

create app with a specific react version

// if changing the create-react-app  script version does nothing then
npx create-react-app

//edit the package.json for react 
{	
  	"react": "^16.0.0",
	"react-dom": "^16.0.0",
}

// run in terminal in the project folder
npm i

// and it will work
Posted by: Guest on September-02-2021

Code answers related to "create app with a specific react version"

Code answers related to "Javascript"

Browse Popular Code Answers by Language