UNPKG

mvp-di

Version:

A simple DI package inspired by the MVP pattern. It can inject the presentation layer in React.js/React Native applications.

8 lines (6 loc) 104 B
export class Presenter<T> { protected view!: T; constructor(view: T) { this.view = view; } }