2015-12-02 01:01:36 -05:00
|
|
|
// #docregion
|
2016-03-25 19:03:53 -04:00
|
|
|
import 'package:angular2/core.dart';
|
2016-01-06 13:45:40 -05:00
|
|
|
|
|
|
|
import 'click_me_component.dart';
|
|
|
|
import 'click_me_component_2.dart';
|
|
|
|
import 'keyup_components.dart';
|
|
|
|
import 'little_tour_component.dart';
|
2016-01-27 18:51:50 -05:00
|
|
|
import 'loop_back_component.dart';
|
2015-12-02 01:01:36 -05:00
|
|
|
|
|
|
|
@Component(
|
|
|
|
selector: 'my-app',
|
2016-01-06 13:45:40 -05:00
|
|
|
templateUrl: 'app_component.html',
|
2015-12-02 01:01:36 -05:00
|
|
|
directives: const [
|
|
|
|
ClickMeComponent,
|
|
|
|
ClickMeComponent2,
|
|
|
|
KeyUpComponentV1,
|
|
|
|
KeyUpComponentV2,
|
|
|
|
KeyUpComponentV3,
|
|
|
|
KeyUpComponentV4,
|
|
|
|
LoopBackComponent,
|
|
|
|
LittleTourComponent
|
|
|
|
])
|
|
|
|
class AppComponent {}
|