summaryrefslogtreecommitdiff
path: root/admin/src/pages/HomePage.tsx
blob: bff4f4e1d247865bf5e86f1cfd28a2b7331cfe9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 };