UNPKG

redux-micro-frontend

Version:

This is a library for using Redux to managing state for self-contained apps in a Micro-Frontend architecture. Each self-contained isolated app can have its own isolated and decoupled Redux store. The componentized stores interact with a global store for e

6 lines (5 loc) 110 B
export interface IAction<Payload = any> { type: string; payload: Payload; logEnabled?: Boolean; }