Skeleton Overview
Explore the fundamental files and directory structure of a Redux boilerplate starter project. Learn about the roles of package.json, webpack configuration, and the main entry files like index.js and index.html to understand how they support application setup and development.
We'll cover the following...
We'll cover the following...
Let’s take a quick look at all the files included within the starter project. The main file we will be working with is app.js (index.js on our platform), but it is important to get familiar with the directory structure before working on any project. The project files are:
package.json
While most fields in this file are irrelevant, ...