Admin Dashboard

In this chapter, we will go through the structure of the Admin module of Nzoni boilerplate and give you an overview of how components are structured.

├── node_modules
├── src
│   ├── app  
│   │  ├── admin
│   │  │   ├── components
│   │  │   │   ├── account               # User profil management 
│   │  │   │   ├── blog-post             # Articles management
│   │  │   │   ├── overview                    
│   │  │   │   ├── plans                 # Plans and Subscriptions management
│   │  │   │   ├── users                 # Users management
│   │  │   ├── admin-routing.module.ts
│   │  │   ├── admin.component.html
│   │  │   ├── admin.component.scss
│   │  │   ├── admin.component.ts
│   │  │   ├── admin.module.ts

Last updated