Import missing components on init page (#25269)

This commit is contained in:
Paulus Schoutsen 2025-05-01 08:57:56 -04:00 committed by Bram Kragten
parent d7dd11ba7f
commit 5d89563aa5

View File

@ -1,6 +1,8 @@
import type { PropertyValues } from "lit"; import type { PropertyValues } from "lit";
import { css, html, LitElement } from "lit"; import { css, html, LitElement } from "lit";
import { property, state } from "lit/decorators"; import { property, state } from "lit/decorators";
import "@material/mwc-button";
import "../components/ha-spinner";
class HaInitPage extends LitElement { class HaInitPage extends LitElement {
@property({ type: Boolean }) public error = false; @property({ type: Boolean }) public error = false;