Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/packages / features / Authentication / SignInFlow / SocialSignIn / SocialSignInButtonGroup.js
Size: Mime:
import * as React from 'react';
import { GoogleSignIn } from './GoogleSignInButton';
import { FacebookSignIn } from './FacebookSignInButton';
import { TwitterSignIn } from './TwitterSignIn';
import { SocialSignInButtonGroupWrap } from './styled';
class SocialSignInButtonGroup extends React.PureComponent {
    render() {
        return (React.createElement(SocialSignInButtonGroupWrap, null,
            React.createElement(FacebookSignIn, null),
            React.createElement(TwitterSignIn, null),
            React.createElement(GoogleSignIn, null)));
    }
}
export { SocialSignInButtonGroup };
export default SocialSignInButtonGroup;
//# sourceMappingURL=SocialSignInButtonGroup.js.map