Base view

This commit is contained in:
2022-11-29 19:21:24 +01:00
parent 7fb5badf30
commit 48bd1e93a4
23 changed files with 4443 additions and 3901 deletions

View File

@@ -0,0 +1,13 @@
import { Injectable } from '@angular/core';
import { BehaviorSubject } from 'rxjs';
import { User } from '../models/user';
@Injectable({
providedIn: 'root'
})
export class DataService {
currentUser?: User;
public showLoader: BehaviorSubject<boolean> = new BehaviorSubject<boolean>(false);
constructor() { }
}