mirror of
https://github.com/FJurmanovic/wallet-web.git
synced 2026-02-06 06:08:10 +00:00
15 lines
367 B
TypeScript
15 lines
367 B
TypeScript
import { controller, target } from "@github/catalyst";
|
|
import { AppMainElement } from "components/app-main/AppMainElement";
|
|
import { closest } from "core/utils";
|
|
|
|
@controller
|
|
class AppRootElement extends HTMLElement {
|
|
@target rootElement: HTMLElement;
|
|
@closest appMain: AppMainElement;
|
|
constructor() {
|
|
super();
|
|
}
|
|
|
|
connectedCallback() {}
|
|
}
|