Skip to content

Instantly share code, notes, and snippets.

@ManishPoduval
Created May 11, 2021 18:56
Show Gist options
  • Save ManishPoduval/60a6562cc7a9f0ee1b1a5cf1545f6534 to your computer and use it in GitHub Desktop.
Save ManishPoduval/60a6562cc7a9f0ee1b1a5cf1545f6534 to your computer and use it in GitHub Desktop.
import React from 'react'
import GoogleLogin from 'react-google-login';
function GoogleButton(props) {
const {onSuccess, onFailure} = props
return (
<div>
<GoogleLogin
clientId="YOUR_CLIENT_ID"
buttonText="Login"
onSuccess={onSuccess}
onFailure={onFailure}
cookiePolicy={'single_host_origin'}
/>
</div>
)
}
export default GoogleButton
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment