1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2025-01-18 04:58:59 +02:00
pigallery2/frontend/app/frame/frame.component.ts
2016-05-04 17:20:21 +02:00

19 lines
400 B
TypeScript

///<reference path="../../browser.d.ts"/>
import {Component, ViewEncapsulation} from '@angular/core';
import {RouterLink} from "@angular/router-deprecated";
@Component({
selector: 'app-frame',
templateUrl: 'app/frame/frame.component.html',
directives:[RouterLink],
encapsulation: ViewEncapsulation.Emulated
})
export class FrameComponent {
constructor() {
}
}