frontend-tutorial-framework/src/app/web/web.component.ts

13 lines
307 B
TypeScript
Raw Normal View History

// Edit me if you want to write your own component in Angular!
import { Component } from '@angular/core';
import { config } from '../config'
2017-12-18 16:52:10 +00:00
@Component({
selector: 'app-web',
templateUrl: './web.component.html',
styleUrls: ['./web.component.scss']
2017-12-18 16:52:10 +00:00
})
export class WebComponent {
constructor() {}
2017-12-18 16:52:10 +00:00
}