2016-06-30 13:07:17 -07:00
|
|
|
/**
|
|
|
|
|
* @license
|
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import {AppModule, ApplicationRef} from '@angular/core';
|
|
|
|
|
import {BrowserModule} from '@angular/platform-browser';
|
|
|
|
|
|
|
|
|
|
import {AnimateCmp} from './animate';
|
|
|
|
|
import {BasicComp} from './basic';
|
2016-07-07 10:05:55 -07:00
|
|
|
import {CompWithAnalyzePrecompileProvider, CompWithPrecompile} from './precompile';
|
2016-06-30 13:07:17 -07:00
|
|
|
import {ProjectingComp} from './projection';
|
|
|
|
|
import {CompWithChildQuery} from './queries';
|
|
|
|
|
|
|
|
|
|
@AppModule({
|
|
|
|
|
modules: [BrowserModule],
|
2016-07-07 10:05:55 -07:00
|
|
|
precompile: [
|
|
|
|
|
AnimateCmp, BasicComp, CompWithPrecompile, CompWithAnalyzePrecompileProvider, ProjectingComp,
|
|
|
|
|
CompWithChildQuery
|
|
|
|
|
]
|
2016-06-30 13:07:17 -07:00
|
|
|
})
|
|
|
|
|
export class MainModule {
|
|
|
|
|
constructor(public appRef: ApplicationRef) {}
|
|
|
|
|
}
|