import { html, render } from "lit-html";
const content = html`
Internet Identity Client
You are not authenticated
To log in, click this button!
`;
export const renderIndex = async () => {
render(content, document.getElementById("pageContent") as HTMLElement);
};