Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import {ChangeDetectorRef, Component} from '@angular/core';
- import {Router} from "@angular/router";
- import {NbAuthService, NbLoginComponent} from "@nebular/auth";
- @Component({
- selector: 'ngx-maps',
- templateUrl: './login.component.html',
- })
- export class LoginComponent extends NbLoginComponent {
- constructor(service: NbAuthService, options: {}, cd: ChangeDetectorRef, router: Router) {
- super(service, {}, cd, router);
- };
- public login(): void {
- console.log();
- };
- }
Advertisement
Add Comment
Please, Sign In to add comment