JSFiddle - React, Tailwind, and code Playground

by Seetpal Singh

HTML

<input
            type="file" accept="image/x-png,image/jpg,image/jpeg"
          />

JavaScript

const isAppleMobile = () => {
    if (/iPhone|iPad|iPod/i.test(navigator.userAgent)) {
      alert('i device')
      return true
    } else {
      alert('other device')
      return false
    }
  }
  
  isAppleMobile()