17 lines
340 B
TypeScript
17 lines
340 B
TypeScript
/** @file
|
|
* @author Edouard DUPIN
|
|
* @copyright 2018, Edouard DUPIN, all right reserved
|
|
* @license PROPRIETARY (see license file)
|
|
*/
|
|
|
|
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-home-out',
|
|
templateUrl: './home-out.html',
|
|
styleUrls: [ './home-out.less' ]
|
|
})
|
|
export class HomeOutScene {
|
|
constructor() { }
|
|
}
|