blob: f0d1c8c8f1d4f8d355f730cc5a8c5d02972b0e71 [file] [log] [blame]
// Sample for complex templates:
//
// top_searches_css.tmpl
import 'dart:html';
part 'complex_datamodel.dart';
part 'top_searches.dart';
void main() {
List<Person> persons = dataModel;
Person whichPerson = persons[2];
var searchesView = new TopSearches(whichPerson, whichPerson.searches);
document.body.elements.add(searchesView.root);
}