The Node.js® Website
1import { useTranslations } from 'next-intl';
2import type { FC } from 'react';
3
4import styles from './index.module.css';
5
6export const WithError: FC = () => {
7 const t = useTranslations();
8
9 return (
10 <div className={styles.searchErrorContainer}>
11 {t('components.search.searchError.text')}
12 </div>
13 );
14};