Files
strapi-plugin-checkbox-list/admin/src/pages/HomePage.tsx
T

17 lines
354 B
TypeScript
Raw Normal View History

2026-02-05 10:19:56 +00:00
import { Main } from '@strapi/design-system';
import { useIntl } from 'react-intl';
import { getTranslation } from '../utils/getTranslation';
const HomePage = () => {
const { formatMessage } = useIntl();
return (
<Main>
<h1>Welcome to {formatMessage({ id: getTranslation('plugin.name') })}</h1>
</Main>
);
};
export { HomePage };