mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
18 lines
417 B
TypeScript
18 lines
417 B
TypeScript
|
import { useTranslation } from 'react-i18next'
|
||
|
|
||
|
type DefaultMessageProps = {
|
||
|
className?: string
|
||
|
style?: React.CSSProperties
|
||
|
}
|
||
|
|
||
|
export function DefaultMessage({ className, style }: DefaultMessageProps) {
|
||
|
const { t } = useTranslation()
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
<span style={style}>{`${t('generic_something_went_wrong')}. `}</span>
|
||
|
<span className={className}>{`${t('please_refresh')}`}</span>
|
||
|
</>
|
||
|
)
|
||
|
}
|