healthhackersER / CAMA-CORE-Example

4 stars 1 forks source link

[APP-MM] Module Manager [Service] - Available Modules #3

Open GundlackFelixDEV opened 4 years ago

GundlackFelixDEV commented 4 years ago

ToDo

Add a service providing a list of available Modules

Description

Context provides a way to pass data through the component tree without having to pass props down manually at every level.

Context provides a way to share values like these between components without having to explicitly pass a prop through every level of the tree.

In a typical React application, data is passed top-down (parent to child) via props, but this can be cumbersome for certain types of props (e.g. locale preference, UI theme) that are required by many components within an application.

Requirements

Implementations / Remarks