JSFiddle - React, Tailwind, and code Playground

HTML

<html>
  <head>

  </head>
  <body>
    <div>
    <button onclick="pegarId(this)" value="este é o value1" >
    Teste
    </button>
    <button onclick="pegarId(this)" value="este é o value2">
    Teste2
    </button>
    </div>
  </body>
</html>

JavaScript

function pegarId(button){
	console.log(button.value)
}