mirror of
https://github.com/zoriya/Kyoo.git
synced 2026-02-07 11:33:37 -05:00
16 lines
270 B
TypeScript
16 lines
270 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-logout',
|
|
templateUrl: './logout.component.html',
|
|
styleUrls: ['./logout.component.scss']
|
|
})
|
|
export class LogoutComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
}
|