Skip to content

MVW Directory structure

Grace-Amondi edited this page May 4, 2021 · 4 revisions

The directory structure below illustrates the organization of files and directories within the mapviewer component. This component not only handles the mapviewer but also other visualization components within Mukua eg graphs, charts, etc

.
├── public/
│   └── index.html
├── src/
│   ├── apps/
│   │   └── mapviewer/
│   │       └── components
│   ├── assets/
│   │   ├── icons
│   │   └── logos
│   ├── components
│   ├── data
│   ├── helpers
│   ├── providers/
│   │   └── dataset-providers/
│   │       └── datasets
│   ├── redux
│   ├── services
│   ├── styles
│   ├── utils
│   └── wrappers/
│       └── fullscreen
└── webpack/
    ├── development.js
    ├── shared.js
    └── production.js

At the root of the project are 3 directories:

  • public -
  • src -
  • webpack -

Creation of a component

Clone this wiki locally