Skip to content

Instantly share code, notes, and snippets.

@leonsenft
Last active August 21, 2017 20:02
Show Gist options
  • Save leonsenft/f551e132b82c78ec1f2689594e3ed80a to your computer and use it in GitHub Desktop.
Save leonsenft/f551e132b82c78ec1f2689594e3ed80a to your computer and use it in GitHub Desktop.
An example AngularDart component.
import 'package:angular/angular.dart';
@Component(
selector: 'greet',
template: '<p>Hello {{name}}!</p>',
)
class GreetComponent {
String name;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment