JSFiddle - React, Tailwind, and code Playground

HTML

<button> your button that looks like a link</button>

CSS

button {
    background:none!important;
     border:none; 
     padding:0!important;
    
    /*optional*/
    font-family:arial,sans-serif; /*input has OS specific font-family*/
     color:#069;
     cursor:pointer;
}
button:hover{
         text-decoration:underline;
}