import { useState } from "react" export function useStatus() { return useState<"load" | "fail" | "done">("load") }