How can I remove the branding from the bottom of the tinymce editor where it says 'Powered by TinyMCE'?
Initialize the editor as follows:
tinymce.init({
selector: '#tinymce',
branding: false
});
With the react integration you can initialize as follows:
<Editor
apiKey={TinyMCE_API_Key}
initialValue={initialValue}
init={{
branding: false
}}
onEditorChange={handleEditorChange}
/>