mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 07:26:59 +00:00
17 lines
356 B
TypeScript
17 lines
356 B
TypeScript
import { MutationHook } from '@commerce/utils/types'
|
|
import useLogin, { UseLogin } from '@commerce/auth/use-login'
|
|
|
|
export default useLogin as UseLogin<typeof handler>
|
|
|
|
export const handler: MutationHook<any> = {
|
|
fetchOptions: {
|
|
query: '',
|
|
},
|
|
async fetcher() {
|
|
return null
|
|
},
|
|
useHook: () => () => {
|
|
return async function () {}
|
|
},
|
|
}
|