UNPKG

@shawnvogt/strapi-plugin-google-translate

Version:

Strapi plugin for automated translation of content using Google Cloud Translation

21 lines (17 loc) 322 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)