mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
15 lines
339 B
TypeScript
15 lines
339 B
TypeScript
import * as ng from 'angular2/core';
|
|
import { carouselItems } from '../../data/CarouselItems';
|
|
import { linkLists } from '../../data/HomepageLinkLists';
|
|
|
|
@ng.Component({
|
|
selector: 'home'
|
|
})
|
|
@ng.View({
|
|
template: require('./home.html')
|
|
})
|
|
export class Home {
|
|
public carouselItems = carouselItems;
|
|
public linkLists = linkLists;
|
|
}
|