INNER CODE UNIT · JavaScript
App
amrkhaledccd/my-moments · instagram-clone-client/src/app/App.js:19
class App extends Component {
state = {
currentUser: null,
isAuthenticated: false,
isLoading: false
};
componentDidMount = () => {
this.loadCurrentUser();
};
loadCurrentUser() {
this.setState({
isLoading: true
});
getCurrentUser()
.then(response => {
console.log("Current profile picture: " + response.profilePicture);