Skip to content

Instantly share code, notes, and snippets.

@zzpzaf
Last active July 15, 2024 07:24
Show Gist options
  • Save zzpzaf/2f74847a5e1d59ef441f88022af5ce8f to your computer and use it in GitHub Desktop.
Save zzpzaf/2f74847a5e1d59ef441f88022af5ce8f to your computer and use it in GitHub Desktop.
signals-data-sharing-service-2
import { Injectable, signal } from '@angular/core';
export interface IMsg {
sender: string;
msg: string;
}
@Injectable({
providedIn: 'root'
})
export class ShareDataService {
public myMsg: IMsg = {sender: '', msg: ''};
public $Msg = signal< IMsg>(this.myMsg);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment