| 1 | import { useEffect, useState } from 'react'; |
| 2 | |
| 3 | export interface UsePersistenceOptions { |
| 4 | key: string; |
| 5 | storage?: Storage; |
| 6 | debounce?: number; |
| 7 | } |
| 8 | |
| 9 | /** |
| 10 | * Hook for persisting pane sizes to localStorage/sessionStorage |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…