JSFiddle - React, Tailwind, and code Playground
HTML
<canvas id="c" width="300" height="300"></canvas>
JavaScript
var canvas = new fabric.Canvas('c');
var text = new fabric.IText('This is the text',{
left: 50,
top: 50,
fontFamily: 'Arial',
fontWeight: 'normal',
fontSize: 18,
lockRotation: true,
stroke: 'black',
fill: 'black'
});
canvas.add(text);