2018-01-25 18:38:02 +09:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
2018-01-29 11:17:00 +09:00
|
|
|
selector: 'of-pages-auth',
|
2018-01-25 18:38:02 +09:00
|
|
|
templateUrl: './auth.component.html',
|
|
|
|
styleUrls: ['./auth.component.scss']
|
|
|
|
})
|
|
|
|
export class AuthComponent implements OnInit {
|
|
|
|
|
|
|
|
constructor() { }
|
|
|
|
|
|
|
|
ngOnInit() {
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|