using custom Hooks in React, with Browser functionality we can check whether the Internet connection is Online or Offline
// it reutrn true or false
window.navigator.onLine
import React, { useState,useEffect } from 'react';
import axios from 'axios'...