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