Skip to content

Instantly share code, notes, and snippets.

View Herve07h22's full-sized avatar

Herve Herve07h22

View GitHub Profile
@Herve07h22
Herve07h22 / FriendViewModel.js
Created April 12, 2021 15:06 — forked from jouana/BindingHook.js
React MVVM example
class FriendViewModel {
_personalId;
_friend;
constructor(personalId, friend) {
this._personalId = personalId;
this._friend = friend;
}
delete() {