Skip to content

Instantly share code, notes, and snippets.

@ebadia
ebadia / notifications.component.html
Last active October 17, 2017 11:35 — forked from mrgoos/notifications.component.html
Use primeNg GrowlModule globally through a service
<p-growl [value]="msgs"></p-growl>
@ebadia
ebadia / loginMachine.js
Last active May 23, 2020 16:57
Generated by XState Viz: https://xstate.js.org/viz
const loginMachine = new Machine({
id: "loginMachine",
initial: "idle",
states: {
idle: {
onEntry: ['checkToken'],
on: {
FAIL: 'loggedOut',
SUCCESS: "loggedIn",
}