JSFiddle - React, Tailwind, and code Playground

by Константин Дралюк

JavaScript

if(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)){
	localStorage.setItem("mobile", "true");
	if (localStorage.getItem("mobile") == "true") {
        window.location = '/mobile.html'; // URL страницы, на которую необходимо редиректить
	}
}