UNPKG

@jswork/react-status-manager

Version:

React component for status manager.

13 lines (10 loc) 340 B
import { PropsWithChildren, FC } from 'react'; interface ReactStatusManagerProps extends PropsWithChildren<any> { className?: string; items: any[]; value?: any; as?: any; asProps?: any; } declare const ReactStatusManager: FC<ReactStatusManagerProps>; export { ReactStatusManagerProps, ReactStatusManager as default };