{
const dom = html`<div style="padding:12px;"></div>`;
const { FluentProvider, teamsLightTheme, Persona } = f9bundle;
ReactDOM.createRoot(dom).render(
htm`<div>
<${FluentProvider} theme=${teamsLightTheme}>
<${Persona}
name="Alok Pepakayala"
secondaryText="Available"
presence=${{ status: "available" }}
avatar=${{
image: {
src: "https://avatars.observableusercontent.com/avatar/f28a7b5f4fb16a63caaace8a87a531e60bea383d6e9d50e126570c77c0814ba9"
}
}}
/>
</>
</>`
);
return dom;
}