The docs at https://www.dartlang.org/polymer-dart/upgrading-to-polymer-from-web-ui.html state the following:
We recommend creating a component for your “application” HTML page. Polymer believes that everything is a component.
What exactly does this mean? Is the complete index HTML page a component that is then embedded in another HTML page or does the index HTML page contain a <polymer-element> declaration?
Is there an example out there that demonstrates this?
Edit: added example for solution
<!DOCTYPE html>
<html>
<head>
<title>My Application</title>
<meta charset="utf-8">
<link rel="import" href="my_app.html">
<script src="packages/polymer/boot.js"></script>
</head>
<body>
<my-app></my-app>
</body>
</html>