2015-12-01 23:01:36 -07:00
|
|
|
// #docregion
|
2016-03-25 16:03:53 -07:00
|
|
|
import 'package:angular2/core.dart';
|
2016-01-06 10:45:40 -08:00
|
|
|
|
|
|
|
import 'click_me_component.dart';
|
2016-06-28 08:25:12 -07:00
|
|
|
import 'click_me2_component.dart';
|
2016-01-06 10:45:40 -08:00
|
|
|
import 'keyup_components.dart';
|
|
|
|
import 'little_tour_component.dart';
|
2016-01-27 15:51:50 -08:00
|
|
|
import 'loop_back_component.dart';
|
2015-12-01 23:01:36 -07:00
|
|
|
|
|
|
|
@Component(
|
|
|
|
selector: 'my-app',
|
2016-01-06 10:45:40 -08:00
|
|
|
templateUrl: 'app_component.html',
|
2015-12-01 23:01:36 -07:00
|
|
|
directives: const [
|
|
|
|
ClickMeComponent,
|
2016-06-28 08:25:12 -07:00
|
|
|
ClickMe2Component,
|
2015-12-01 23:01:36 -07:00
|
|
|
KeyUpComponentV1,
|
|
|
|
KeyUpComponentV2,
|
|
|
|
KeyUpComponentV3,
|
|
|
|
KeyUpComponentV4,
|
|
|
|
LoopBackComponent,
|
|
|
|
LittleTourComponent
|
|
|
|
])
|
|
|
|
class AppComponent {}
|