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-29 17:30:47 +09:00
|
|
|
templateUrl: './auth-page.component.html',
|
|
|
|
styleUrls: ['./auth-page.component.scss']
|
2018-01-25 18:38:02 +09:00
|
|
|
})
|
2018-01-29 17:30:47 +09:00
|
|
|
export class AuthPageComponent implements OnInit {
|
2018-01-25 18:38:02 +09:00
|
|
|
|
|
|
|
constructor() { }
|
|
|
|
|
|
|
|
ngOnInit() {
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|