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

18 lines
506 B
Dart

// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'main.dart';
// **************************************************************************
// JaelComponentGenerator
// **************************************************************************
mixin _HelloJaelTemplate implements Component<dynamic> {
DateTime get now;
@override
DomNode render() {
return h('div', {}, [
h('h1', {}, [text('Hello, Jael!')]),
h('i', {}, [text('Current time: '), text(now.toString())])
]);
}
}