I am using React Markdown (https://www.npmjs.com/package/react-markdown) to render markdown content in my NextJS project.
I have created a simple component named “ImageRenderer” and I need to pass an argument (in this case the slug) in addition props, to this component but I do not know how:
My page.js
JavaScript
x
2
1
<ReactMarkdown source={obj.default} escapeHtml={false} renderers={{ "image": ImageRenderer }} />
2
The component:
JavaScript
1
14
14
1
export default function ImageRenderer(props) {
2
const imageSrc = props.src;
3
const altText = props.alt;
4
5
return (
6
<img
7
data-loading="lazy"
8
data-slug={slug}
9
data-orig-file={imageSrc}
10
alt={altText}
11
/>
12
);
13
}
14
Advertisement
Answer
Try this solution. Create an anonymous function and return your component from it with the necessary props
JavaScript
1
8
1
<ReactMarkdown
2
source={obj.default}
3
escapeHtml={false}
4
renderers={{
5
"image": () => <ImageRenderer src="YOUR_SRC" alt="YOUR_ALT" />
6
}}
7
/>
8