UNPKG

@sharpetronics/strapi-plugin-tinymce-editor

Version:

Replaces the default Strapi WYSIWYG editor with a self-hosted build of the TinyMCE editor.

21 lines (17 loc) 291 B
/* * * HomePage * */ import React from 'react'; // import PropTypes from 'prop-types'; import pluginId from '../../pluginId'; const HomePage = () => { return ( <div> <h1>{pluginId}&apos;s HomePage</h1> <p>Happy coding</p> </div> ); }; export default HomePage;