You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
| 12345678910111213 |
- /**
- * @fileoverview Img component for rendering <img> tags in Markdown.
- * Extracted from the main markdown renderer for modularity.
- * Uses the ImageGallery component to display images.
- */
- import React from 'react'
- import ImageGallery from '@/app/components/base/image-gallery'
-
- const Img = ({ src }: any) => {
- return <div className="markdown-img-wrapper"><ImageGallery srcs={[src]} /></div>
- }
-
- export default Img
|