JSFiddle - React, Tailwind, and code Playground

by dandiebolt

HTML

<a href='#' onclick="hello('hello')">Hello</a>

JavaScript

function hello(msg) {
    alert("hello");
}