mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
19 lines
389 B
TypeScript
19 lines
389 B
TypeScript
///<reference path="../../browser.d.ts"/>
|
|
|
|
import {Component, ViewEncapsulation} from 'angular2/core';
|
|
import {RouterLink} from "angular2/router";
|
|
|
|
@Component({
|
|
selector: 'app-frame',
|
|
templateUrl: 'app/frame/frame.component.html',
|
|
directives:[RouterLink],
|
|
encapsulation: ViewEncapsulation.Emulated
|
|
})
|
|
export class FrameComponent {
|
|
constructor() {
|
|
}
|
|
|
|
|
|
}
|
|
|