Src Directory

Let’s take a closer look at the src directory.

The api folder

First, we have the api folder, which has the API layer of our application. It has methods that are responsible for making API calls and communicating with a server.

The assets folder

The assets folder contains fonts and images. In fonts, we can keep any custom fonts and typefaces. In images, we can store any pictures used throughout the application.

The components directory

The initial directories are base, common, and transitions. The base directory accommodates the most reusable components used in an application, buttons, form inputs, and so on. Base components are dynamically loaded and registered, so we don’t have ...