UNPKG

strapi-html-editor

Version:

Presenting an alternative to standard wysiwyg editor in Strapi in the form of this HTML-editor that facilitates easier and hussle-free data customization to use with various frontends.

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;