import { html, css, LitElement } from "lit";
import { customElement } from "lit/decorators.js";
@customElement("account-info")
export class AccountInfo extends LitElement {
static styles = css`
article {
padding: 16px;
}
`;
render() {
return html`
Account Info
`;
}
}