16 lines
281 B
TypeScript
16 lines
281 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'of-pages-auth',
|
|
templateUrl: './auth-page.component.html',
|
|
styleUrls: ['./auth-page.component.scss']
|
|
})
|
|
export class AuthPageComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
}
|