I am new with ReactJS. I have some problems with react-markdown
. I want to embed a video using markdown.
Here is my simple example of my problem.
// import react-markdown
import ReactMarkdown from 'react-markdown'
// markdown string
const md = `
Hello video embeded fro youtube.
{/* how can I embed a video here */}
`
// use markdown
<ReactMarkdown
linkTarget="_blank"
> {md} </ReactMarkdown>