| Index: sky/examples/flights-app/flights-app.sky
|
| diff --git a/sky/examples/flights-app/flights-app.sky b/sky/examples/flights-app/flights-app.sky
|
| index ccb24ff6fe1ea3ee711168adfecb5883c9dddf40..2d32ff712d3082ce494a820e7d838974f4baa54c 100644
|
| --- a/sky/examples/flights-app/flights-app.sky
|
| +++ b/sky/examples/flights-app/flights-app.sky
|
| @@ -10,6 +10,7 @@
|
| <import src="app-scrollable.sky" />
|
| <import src="app-toast.sky" />
|
|
|
| +<sky-element name="flights-app">
|
| <template>
|
| <style>
|
| * { box-sizing: border-box; }
|
| @@ -200,7 +201,7 @@
|
| </app-toast>
|
| </template>
|
| <script>
|
| -SkyElement({
|
| - name: "flights-app",
|
| -});
|
| +module.exports = class extends SkyElement {
|
| +}.register();
|
| </script>
|
| +</sky-element>
|
|
|