UNPKG

react-storage-drafts

Version:

React Drafts is a library for creating, saving, and managing local documents in React applications.

7 lines (6 loc) 185 B
import type { IUseDraftProps } from './types'; export default function useDraft(props: IUseDraftProps): { draft: any; update: (changes: any) => void; remove: () => void; };