Note: i18nとexport default classの話し

Why

Trying to implement the i18n translation function to the GridEditModal.jsx file in the imprv/change-modal-layout branch but fails with the withTranslation method with errors like: Invalid Hook Call

Solving results

Reference external_link

Using the Translation component and

<Translation> {(t) => <p>{t('my_text')}</p>} </Translation>

to implement the translation function.