import { Text } from '@mantine/core'; import { useTranslation } from 'next-i18next'; interface TipProps { children: React.ReactNode; } export default function Tip(props: TipProps) { const { t } = useTranslation('common'); return ( {t('tip')} {props.children} ); }