13 lines
185 B
TypeScript
13 lines
185 B
TypeScript
import {Injectable} from '@angular/core';
|
|
|
|
@Injectable({
|
|
providedIn: 'root'
|
|
})
|
|
export class LoginRegistrationService {
|
|
|
|
showModal: boolean = false;
|
|
|
|
constructor() {
|
|
}
|
|
}
|