JSFiddle - React, Tailwind, and code Playground

by tea4two

HTML

<!-- タイマーを試す -->

JavaScript

function popupAlert() {
    alert('3秒立ったのでアラートを表示します。');
}

setTimeout(popupAlert, 3000);