JSFiddle - React, Tailwind, and code Playground

by arcm111

HTML

<textarea id="mytextarea"></textarea>

JavaScript

tinymce.init({
    selector: '#mytextarea',
    theme: 'modern',
    plugins: [
        'advlist autolink lists link image charmap print preview hr anchor pagebreak',
        'searchreplace wordcount visualblocks visualchars code fullscreen',
        'insertdatetime media nonbreaking save table contextmenu directionality',
        'emoticons template paste textcolor colorpicker textpattern imagetools'
    ],
    toolbar1: 'insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image | fontsizeselect',
	setup: function (editor)
	{
		editor.on ('init', function()
		{
			this.execCommand ('fontsize', false, '24pt');
		})
	}
});