import useTranslation from 'next-translate/useTranslation' import Trans from 'next-translate/Trans' import Link from 'next/link' import Header from '../../components/header' import MdxExample from '../../components/mdx-example.mdx' import NoFunctionalComponent from '../../components/no-functional-component' import PluralExample from '../../components/plural-example' const Component = (props: any) =>

export default function MoreExamples() { const { t } = useTranslation('more-examples') const exampleWithVariable = t('example-with-variable', { exampleOfVariable: 42, }) return ( <>

{exampleWithVariable}

, ]} />
{t`nested-example.very-nested.nested`}

{t('dynamic-namespaces-link')}
{t('dynamic-route')}
Catchall ) }