13 lines
350 B
TypeScript
13 lines
350 B
TypeScript
import {} from '@angular/common/http';
|
|
import { Component } from '@angular/core';
|
|
import { RouterOutlet } from '@angular/router';
|
|
import { FormsModule } from '@angular/forms';
|
|
@Component({
|
|
selector: 'app-auth-layout',
|
|
templateUrl: './auth-layout.component.html',
|
|
styleUrl: './auth-layout.component.css'
|
|
})
|
|
export class AuthLayoutComponent {
|
|
|
|
}
|