platform/jael_web/example/stateful.g.dart

17 lines
488 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;
2019-03-23 18:58:10 +00:00
void beforeDestroy();
2019-03-23 18:49:37 +00:00
@override
DomNode render() {
return h('div', {}, [text('Tick count: '), text(state.ticks.toString())]);
}
}