feat: add reset password page

This commit is contained in:
Ali BARIN
2023-03-03 20:13:31 +00:00
parent 5762cf5dc5
commit fa867387d4
9 changed files with 173 additions and 12 deletions

View File

@@ -0,0 +1,7 @@
import { gql } from '@apollo/client';
export const RESET_PASSWORD = gql`
mutation ResetPassword($input: ResetPasswordInput) {
resetPassword(input: $input)
}
`;