@shawnvogt/strapi-plugin-google-translate
Version:
Strapi plugin for automated translation of content using Google Cloud Translation
27 lines (20 loc) • 432 B
JavaScript
/**
*
* Initializer
*
*/
import { useEffect, useRef } from 'react'
import PropTypes from 'prop-types'
import pluginId from '../../pluginId'
const Initializer = ({ setPlugin }) => {
const ref = useRef()
ref.current = setPlugin
useEffect(() => {
ref.current(pluginId)
}, [])
return null
}
Initializer.propTypes = {
setPlugin: PropTypes.func.isRequired,
}
export default Initializer