JSFiddle - React, Tailwind, and code Playground

HTML

Hello world.

JavaScript

var ls = localStorage.getItem('namespace.vistited');
if (ls == null) {
    alert("Your first visit");
    localStorage.setItem('namespace.vistited', 1)
}