/* eslint-plugin-disable lit */ /** @license Copyright (c) 2015 The Polymer Project Authors. All rights reserved. This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as part of the polymer project is also subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt */ /* This code is copied from app-header-layout. 'fullbleed' support is removed as Home Assisstant doesn't use it. transform: translate(0) is added. */ /* FIXME(polymer-modulizer): the above comments were extracted from HTML and may be out of place here. Review them and then delete this comment! */ import "@polymer/app-layout/app-header-layout/app-header-layout"; import { html } from "@polymer/polymer/lib/utils/html-tag"; import "@polymer/polymer/polymer-element"; class HaAppLayout extends customElements.get("app-header-layout") { static get template() { return html`
`; } } customElements.define("ha-app-layout", HaAppLayout);