mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-23 01:58:29 +00:00
11 lines
236 B
TypeScript
11 lines
236 B
TypeScript
import * as ng from '@angular/core';
|
|
import { ROUTER_DIRECTIVES } from '@angular/router';
|
|
|
|
@ng.Component({
|
|
selector: 'nav-menu',
|
|
template: require('./nav-menu.html'),
|
|
directives: [...ROUTER_DIRECTIVES]
|
|
})
|
|
export class NavMenu {
|
|
}
|