Code: // React and react components import React from 'react'; import ReactDOM from 'react-dom' import {Provider} from 'react-redux' import App from './containers/App'
Error Message: "Syntax error 800A03EA at line 2"
I got the whole project from https://github.com/mimshwright/mimstris and changed nothing.
What am I doing wrong?
You cannot run main.js because this is the source code. You need build the application first and therefore you need build tools.
In this case install yarn and after installing dependent modules (yarn install) you can start the application in development mode (yarn run start) or build it (yarn run build).