The Node.js® Website
at main 14 lines 318 B view raw
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};