mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 20:53:07 +08:00
8 lines
220 B
JavaScript
8 lines
220 B
JavaScript
export const loginWithFacebook = () => (dispatch, _, { rest }) => {
|
|
window.open(
|
|
`${rest.uri}/auth/facebook`,
|
|
'Continue with Facebook',
|
|
'menubar=0,resizable=0,width=500,height=500,top=200,left=500'
|
|
);
|
|
};
|