I am following the instructions here: https://reactjs.org/tutorial/tutorial.html#setup-option-2-local-development-environment.
After step 6 I am being asked to run npm start. This is the result:
This is what is inside package.json in the scripts:
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
This is my index.js file for now:
import ReactDOM from 'react-dom';
import React from 'react';
import './index.css';
Basically I just ran npx create-react-app my-app
and tried to replace what is inside src with a .js file.