JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://rawgithub.com/kostia/jquery.li18n/master/jquery.li18n.js"></script>
<div id="greeting"></div>
JavaScript
$.li18n.translations = {de: {greeting: 'Hallo %{{name}}'}};
$.li18n.currentLocale = 'de';
$('#greeting').text(_t('greeting', {name: 'Alice'}));