Viewing File: /home/ubuntu/route-and-root-frontend-base/src/components/Helper/SocialButton.js

import React from 'react'
import SocialLogin from 'react-social-login'

class SocialButton extends React.Component {

    render() {
        return (
            <button onClick={this.props.triggerLogin} {...this.props}>
              { this.props.children }
            </button>
        );
    }
}

export default SocialLogin(SocialButton);
Back to Directory File Manager