platform/packages/jael/jael_web/example/stateful.g.dart
thomashii@dukefirehawk.com 981397791a Updated JAEL to Dart 3
2023-05-27 07:27:47 +08:00

18 lines
495 B
Dart

// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'stateful.dart';
// **************************************************************************
// JaelComponentGenerator
// **************************************************************************
mixin _StatefulAppJaelTemplate implements Component<_AppState> {
//Timer? get _timer;
@override
void beforeDestroy();
@override
DomNode render() {
return h('div', {}, [text('Tick count: '), text(state.ticks.toString())]);
}
}