JSFiddle - React, Tailwind, and code Playground

by Tom Randolph

HTML

<p>Using the textarea content, echo a multiplication table of 12 rows/cols</p>
<p>Example:</p>
<pre>
    1   2   3
    2   4   6
    3   6   9
</pre>
<textarea></textarea>

CSS

textarea{
    width: 750px;
    height: 250px;
}