import { MutationHook } from '@commerce/utils/types' import useLogin, { UseLogin } from '@commerce/auth/use-login' export default useLogin as UseLogin export const handler: MutationHook = { fetchOptions: { query: '', }, async fetcher() { return null }, useHook: () => () => { return async function () {} }, }