UNPKG

@uigstudio/strapi-plugin-custom-fields

Version:
21 lines (17 loc) 329 B
/* * * HomePage * */ import React, {memo} 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 memo(HomePage);