This repository has been archived on 2022-02-10. You can view files and clone it, but cannot push or open issues or pull requests.
rangitaki-desktop/web/article-view.dart

19 lines
400 B
Dart

@HtmlImport('article_view.html')
library mmk2410_rangitaki_app.article_view;
import 'package:polymer/polymer.dart';
import 'package:web_components/web_components.dart' show HtmlImport;
@PolymerRegister('article-view')
class ArticleView extends PolymerElement {
ArticleView.created() : super.created();
@property
String title;
String author;
String date;
String text;
String tags;
}