Member function undefined – javascript – Facebook api
I have made this class: import React, {Component} from 'react'; import { View, ActivityIndicator, Button } from 'react-native'; import Auth from '../api/Auth'; export default class LoginScreen extends React.Component { constructor(props) { super(props); this.state = { alreadyLoggedIn: true }; this.redirectToHome.bind(this); this.loginWithFacebook.bind(this);…