Let build UI for our WordPress Plugin with ReactJS. First we need to generate a package.json file. Open your terminal and run: >npm init Once the package.json has been generated, we can begin installing our dependencies. Run these commands sequentially: >npm install --save react >npm install --save react-dom Before React code can run in theread more
