placeholder.tsx 333 B

12345678910111213
  1. import { useTranslation } from 'react-i18next'
  2. const Placeholder = () => {
  3. const { t } = useTranslation()
  4. return (
  5. <div className='absolute top-0 left-0 h-full w-full text-sm text-gray-300 select-none pointer-events-none leading-6'>
  6. {t('common.promptEditor.placeholder')}
  7. </div>
  8. )
  9. }
  10. export default Placeholder