1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00
pigallery2/frontend/app/frame/frame.component.ts

19 lines
390 B
TypeScript
Raw Normal View History

///<reference path="../../browser.d.ts"/>
2016-05-09 17:04:56 +02:00
import {Component, ViewEncapsulation} from "@angular/core";
2016-05-04 17:20:21 +02:00
import {RouterLink} from "@angular/router-deprecated";
2016-05-09 17:04:56 +02:00
@Component({
selector: 'app-frame',
2016-05-09 17:04:56 +02:00
templateUrl: 'app/frame/frame.component.html',
directives: [RouterLink],
encapsulation: ViewEncapsulation.Emulated
})
2016-05-09 17:04:56 +02:00
export class FrameComponent {
constructor() {
}
2016-05-09 17:04:56 +02:00
2016-05-01 10:28:05 +02:00
}