Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 146x 146x 146x 3362x 3362x 3362x 3362x 146x | import React, { Fragment, FunctionComponent } from 'react';
import withLanguage, { WithLanguageProps } from './withLanguage';
export interface TranslatedStringProps {
id: string;
data?: any;
}
const TranslatedString: FunctionComponent<TranslatedStringProps & WithLanguageProps> = ({
data,
id,
language,
}) => (
<Fragment>
{ language.translate(id, data) }
</Fragment>
);
export default withLanguage(TranslatedString);
|