Comment créer une application React avec du fil, NPX ou NPM

npx create-react-app app-name //With npx, the CLI uses npm to install dependencies
npm init react-app app-name // With npm, the CLI also uses npm to install dependencies

yarn create react-app app-name // With yarn, the CLI uses yarn to install dependencies
Code Rabbi