JSFiddle - React, Tailwind, and code Playground
HTML
<input type="radio" name="user-type" value="Store">
<input type="radio" name="user-type" value="Brand" checked="checked">
JavaScript
if($('input[name="user-type"]:checked').val() === "Brand")
{
alert("Test");
}