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