import { Component } from '@angular/core' import { Router } from '@angular/router' @Component({ selector: 'app-auth-register', template: `
Create new account
Already have account? Sign in here!
`, styles: [], }) export class AuthRegisterComponent { constructor(private router: Router) {} submit() { this.router.navigate(['/']) } }