${props?.title ? html` ${props.title}e` : ""}
${props?.subtitle
? html` ${props.subtitle}e`
: ""}
${props?.drawerContent ?? ""}
${props?.appContent ?? ""}
`;
};
export const toggleDrawer = (root: HTMLElement | ShadowRoot) => {
const drawer = root.querySelector("mwc-drawer")! as Drawer;
drawer.open = !drawer.open;
};