UNPKG

strapi-plugin-parent-child-relationships

Version:

Strapi plugin to create and manage parent-child relationships between content types using custom fields

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;