Updatnig privacy page to use hooks

This commit is contained in:
Jeff Avallone 2019-03-26 18:29:21 -04:00
parent aa10ecf18c
commit 110543a537
2 changed files with 10 additions and 12 deletions

View File

@ -1,17 +1,16 @@
import React from 'react';
import PropTypes from 'prop-types';
import { withTranslation } from 'react-i18next';
import { useTranslation } from 'react-i18next';
import Metadata from 'components/Metadata';
import PrivacyPolicy from 'components/PrivacyPolicy';
export const PrivacyPage = ({ t }) => <>
<Metadata title={ t('Privacy Policy') } />
<PrivacyPolicy />
</>;
export const PrivacyPage = () => {
const { t } = useTranslation();
PrivacyPage.propTypes = {
t: PropTypes.func.isRequired
return <>
<Metadata title={ t('Privacy Policy') } />
<PrivacyPolicy />
</>;
};
export default withTranslation()(PrivacyPage);
export default PrivacyPage;

View File

@ -6,13 +6,12 @@ jest.mock('components/PrivacyPolicy', () =>
import React from 'react';
import { render } from 'react-testing-library';
import { mockT } from 'i18n';
import { PrivacyPage } from 'pages/privacy';
import PrivacyPage from 'pages/privacy';
describe('Privacy Page', () => {
test('rendering', () => {
const { asFragment } = render(
<PrivacyPage t={ mockT } />
<PrivacyPage/>
);
expect(asFragment()).toMatchSnapshot();
});