JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text" id="inputId" >
JavaScript
var input = document.getElementById('inputId');
input.setCustomValidity('The two email addresses must match.');
<input type="text" id="inputId" >
var input = document.getElementById('inputId');
input.setCustomValidity('The two email addresses must match.');