import { classifyBackend, classifyRead, BackendStateCard } from '@hanzo/ui/product'
No examples yet.
export type BackendStateKind =| 'not-initialized'| 'unavailable'| 'not-implemented'| 'access'| 'signin'| 'billing'| 'error'
export type BackendState = { kind: BackendStateKind; message: string }