@shawnvogt/strapi-plugin-google-translate
Version:
Strapi plugin for automated translation of content using Google Cloud Translation
21 lines (17 loc) • 322 B
JavaScript
/*
*
* HomePage
*
*/
import React, { memo } from 'react'
// import PropTypes from 'prop-types';
import pluginId from '../../pluginId'
const HomePage = () => {
return (
<div>
<h1>{pluginId}'s HomePage</h1>
<p>Happy coding</p>
</div>
)
}
export default memo(HomePage)