User Dashboard
In this chapter, we will go through the structure of the User dashboard module of Nzoni boilerplate and give you an overview of how components are structured.
├── node_modules
├── src
│ ├── app
│ │ ├── dashboard
│ │ │ ├── components
│ │ │ │ ├── plans # Plans management
│ │ │ │ ├── sidebar
│ │ │ │ ├── profile # User profil management
│ │ │ │ ├── header
│ │ │ ├── dashboard-routing.module.ts
│ │ │ ├── dashboard.component.html
│ │ │ ├── dashboard.component.scss
│ │ │ ├── dashboard.component.ts
│ │ │ ├── dashboard.module.ts
Last updated