mirror of
https://github.com/wassname/talk.git
synced 2026-07-04 22:13:31 +08:00
8 lines
214 B
JavaScript
8 lines
214 B
JavaScript
export const loginWithGoogle = () => (dispatch, _, { rest }) => {
|
|
window.open(
|
|
`${rest.uri}/auth/google`,
|
|
'Continue with Google',
|
|
'menubar=0,resizable=0,width=500,height=500,top=200,left=500'
|
|
);
|
|
};
|