9 lines
167 B
Dart
9 lines
167 B
Dart
|
library foo;
|
||
|
|
||
|
import 'package:angular2/src/core/annotations/annotations.dart';
|
||
|
|
||
|
@Component(selector: '[salad]')
|
||
|
class DependencyComponent {
|
||
|
DependencyComponent();
|
||
|
}
|