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