how to add oAuth google signin in react native app

JavaScript
import { GoogleSignin, GoogleSigninButton } from 'react-native-google-signin'; 
render() {  
  <GoogleSigninButton 
  style={{ width: 192, height: 48 }}
  size={GoogleSigninButton.Size.Wide}
  color={GoogleSigninButton.Color.Dark}
  onPress={this._signIn}
  disabled={this.state.isSigninInProgress} />
};
import { GoogleSignin, GoogleSigninButton } from 'react-native-google-signin'; render() {  <GoogleSigninButton    style={{ width: 192, height: 48 }}    size={GoogleSigninButton.Size.Wide}    color={GoogleSigninButton.Color.Dark}    onPress={this._signIn}    disabled={this.state.isSigninInProgress} />}
Source

Also in JavaScript: