* boilerplate, gulpfile, quickstart * move ts files up to cookbooks * move rest of ts files * fix tsconfig, default build task, json file * fix js examples * fix webpack example * remove a2docs.css references * fix aot examples * fix webpack run task * fix cb-i18n * fix upgrade examples * fix unit tests * fix comment in deployment index * removed unused typings.json * fix plunkers * fix js example paths * fix ts quickstart/setup prose * add src folder note to setup * broadly replace app/ -> src/app/ * broadly replace main.ts * broadly replaced index.html * broadly replace tsconfig * replace systemjs * fix filetrees * Minor prose fixes to aot, i18n cookbooks * remove char harp was complaining about * update new reactive forms example * fix quickstart jade error * fix mistakes uncovered by CI * fix bad filename errors * edit style guide 04-06 rule to use src * add changelog * Incorporate Jesus's feedback * fix snippet headers in toh1/2 * chore: tweak changelog and setup text
34 lines
1.4 KiB
TypeScript
34 lines
1.4 KiB
TypeScript
import { NgModule } from '@angular/core';
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
|
|
import { HeroTeamBuilderComponent } from './hero-team-builder.component';
|
|
import { HeroListBasicComponent } from './hero-list-basic.component';
|
|
import { HeroListInlineStylesComponent } from './hero-list-inline-styles.component';
|
|
import { HeroListEnterLeaveComponent } from './hero-list-enter-leave.component';
|
|
import { HeroListEnterLeaveStatesComponent } from './hero-list-enter-leave-states.component';
|
|
import { HeroListCombinedTransitionsComponent } from './hero-list-combined-transitions.component';
|
|
import { HeroListTwowayComponent } from './hero-list-twoway.component';
|
|
import { HeroListAutoComponent } from './hero-list-auto.component';
|
|
import { HeroListGroupsComponent } from './hero-list-groups.component';
|
|
import { HeroListMultistepComponent } from './hero-list-multistep.component';
|
|
import { HeroListTimingsComponent } from './hero-list-timings.component';
|
|
|
|
@NgModule({
|
|
imports: [ BrowserModule ],
|
|
declarations: [
|
|
HeroTeamBuilderComponent,
|
|
HeroListBasicComponent,
|
|
HeroListInlineStylesComponent,
|
|
HeroListCombinedTransitionsComponent,
|
|
HeroListTwowayComponent,
|
|
HeroListEnterLeaveComponent,
|
|
HeroListEnterLeaveStatesComponent,
|
|
HeroListAutoComponent,
|
|
HeroListTimingsComponent,
|
|
HeroListMultistepComponent,
|
|
HeroListGroupsComponent
|
|
],
|
|
bootstrap: [ HeroTeamBuilderComponent ]
|
|
})
|
|
export class AppModule { }
|