platform/jael_web/example/stateful.g.dart

16 lines
464 B
Dart
Raw Normal View History

2019-03-23 18:49:37 +00:00
// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'stateful.dart';
// **************************************************************************
// JaelComponentGenerator
// **************************************************************************
abstract class _StatefulAppJaelTemplate implements Component<_AppState> {
Timer get _timer;
@override
DomNode render() {
return h('div', {}, [text('Tick count: '), text(state.ticks.toString())]);
}
}