Progress with LocalProvider

This commit is contained in:
Bel Curcio
2021-06-10 10:51:42 -03:00
parent e752555e02
commit 9039a27f99
73 changed files with 24109 additions and 17 deletions

View File

@@ -0,0 +1,15 @@
import { useCallback } from 'react'
export function emptyHook() {
const useEmptyHook = async (options = {}) => {
return useCallback(async function () {
return Promise.resolve()
}, [])
}
return useEmptyHook
}
export const handler = {}
export default emptyHook