19 lines
397 B
TypeScript
19 lines
397 B
TypeScript
/** @file
|
|
* @author Edouard DUPIN
|
|
* @copyright 2020, Edouard DUPIN, all right reserved
|
|
* @license MPL-2 (see license file)
|
|
*/
|
|
|
|
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
// moduleId: module.id.toString(),
|
|
selector: 'burger-property',
|
|
templateUrl: './burger-property.html',
|
|
styleUrls: ['./burger-property.less'],
|
|
})
|
|
export class BurgerPropertyComponent {
|
|
|
|
constructor() {}
|
|
}
|