mirror of
https://github.com/cupcakearmy/obolus.git
synced 2024-12-23 08:36:26 +00:00
12 lines
260 B
JavaScript
12 lines
260 B
JavaScript
|
import React, { useEffect } from 'react'
|
||
|
|
||
|
|
||
|
export const useLocalStorageWatcher = (fn) => {
|
||
|
useEffect(() => {
|
||
|
window.addEventListener('storage', fn)
|
||
|
|
||
|
return () => {
|
||
|
window.removeEventListener('storage', fn)
|
||
|
}
|
||
|
}, [])
|
||
|
}
|