diff --git a/content/tutorials/react-setup.md b/content/tutorials/react-setup.md index e05b9ac2..66d4cac9 100644 --- a/content/tutorials/react-setup.md +++ b/content/tutorials/react-setup.md @@ -19,7 +19,7 @@ This tutorial shows how you can build a basic [React](https://reactjs.org/) app 1. Run `npx create-react-app marketplace` in you terminal. This will create a folder named `marketplace` with a boilerplate React app. 2. Move to your app directory with `cd marketplace` and run `npm install @oceanprotocol/squid web3`. This adds the Ocean Protocol JavaScript library and Web3 packages to the app. -3. At this point you can already run `yarn start` which starts the app in your browser at [localhost:3000](http://localhost:3000). +3. At this point you can already run `npm start` which starts the app in your browser at [localhost:3000](http://localhost:3000). 4. To clear the React spinning icon, open `src/App.js` and modify the source to: ```javascript