overflow-webapp/src/app/pages/auth/auth-page.component.ts

16 lines
281 B
TypeScript
Raw Normal View History

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() {
}
}