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

16 lines
261 B
TypeScript
Raw Normal View History

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