import { Main } from '@strapi/design-system'; import { useIntl } from 'react-intl'; import { getTranslation } from '../utils/getTranslation'; const HomePage = () => { const { formatMessage } = useIntl(); return (

Welcome to {formatMessage({ id: getTranslation('plugin.name') })}

); }; export { HomePage };