import { Fragment, h } from "preact"; import { useOfficer } from "../hooks/useOfficer.js"; import { HandleAccountNotReady } from "./HandleAccountNotReady.js"; export function Officer() { const officer = useOfficer(); if (officer.state !== "ready") { return ; } return (

Public key

{officer.account.accountId}

Request account activation

); }