import React from 'react';
import { isUserLoggedInVar } from './cache';

const Logout = () => {
  const handleLogout = () => {
     isUserLoggedInVar(false);
  }
  
  return <button onClick={handleLogout}>Log out</button>;
}

This will trigger a component update