JSFiddle - React, Tailwind, and code Playground

by Nikolay Petrov

JavaScript

// как воспользоваться друпаловским jquery
(function ($) {
	
	$(function(){
		
		// здесь можно писать любой jquery
		
		//$('.strokeWidthDigit').each(function (){
			//var width = $(this).text();
			//$(this).parents('tr').addClass('widthTr'+width);
		//});
		
	});
	
})(jQuery);