7 lines
394 B
JavaScript

export function mount(element, context) {
const title=document.createElement("h1");title.textContent="Example Application";
const message=document.createElement("p");message.textContent="Opened by "+context.user.displayName+". This application was installed without rebuilding Conductor.";
element.style.padding="32px";element.append(title,message);
return ()=>element.replaceChildren();
}