PWAInstallationGuide added

This commit is contained in:
Daniel Shleifman
2022-06-26 13:37:08 +03:00
parent 80a071c903
commit 9e768921be
5 changed files with 135 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
export default () => {
if (typeof window === `undefined` || typeof navigator === `undefined`) return false
return /iPhone|iPad|iPod/i.test(navigator.userAgent || navigator.vendor)
}