react-i18next#WithTranslationProps TypeScript Examples
The following examples show how to use
react-i18next#WithTranslationProps.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ErrorBoundary.tsx From next-core with GNU General Public License v3.0 | 5 votes |
ErrorBoundary: React.ComponentType<
Omit<
Subtract<WithTranslation<typeof NS_BRICK_KIT>, WithTranslationProps>,
keyof WithTranslation<typeof NS_BRICK_KIT>
> &
WithTranslationProps
> = withTranslation(NS_BRICK_KIT)(LegacyErrorBoundary)