Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import { ModalContent, ModalTitle } from '@/components/ui';
export const LongTextModal = ({ text }: { text: string }) => (
<ModalContent className='mx-4 w-full max-w-[311px]'>
<div className='mb-4'>
<ModalTitle>메세지 전체보기</ModalTitle>
</div>
<div className='scrollbar-thin max-h-[70vh] overflow-y-auto px-1'>
<div className='break-all whitespace-pre-line text-gray-800'>{text}</div>
</div>
</ModalContent>
);
|