This commit is contained in:
2026-06-24 14:07:11 +02:00
commit cc4de1d450
296 changed files with 51110 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
import { Box } from '@mui/material'
import ReactQuill from 'react-quill'
interface QuillDisplayProps {
value: string
}
const QuillDisplay = (props: QuillDisplayProps): JSX.Element => {
const { value } = props
return (
<Box className='quill-container' sx={{
'& .quill': {
'& .ql-toolbar': {
display: 'none'
},
'& .ql-container': {
border: 'none',
'& .ql-editor': {
padding: 0
}
}
}
}}>
<ReactQuill
className='quill'
readOnly={true}
value={value}
/>
</Box>
)
}
export default QuillDisplay