JSFiddle - React, Tailwind, and code Playground

HTML

<input type="checkbox" id="see" value="a">
<input type="checkbox" id="saw" value="b">

<input type="text" id="field">

JavaScript

$('input:checkbox').click(function() {
    $('#field').val($('#field').val() + $(this).val());
});