Strapi - Build a blog using Strapi, React and Apollo

Hi!

  1. This code doesn’t return anything:
    <ReactMarkdown 
        source={articles.data[0].attributes.content}
    />
I managed to get the content by using 
    <ReactMarkdown 
        escapeHtml={false} 
        children={articles.data[0].attributes.content} 
    />
  1. The iframe is not converted to HTML code, as it is considered dangeroud HTML by React-Markdown.
    Do you have any idea how I can get the iframe as HTML tag from markdown?

  2. In the tutorial, you forgot to mention installing graphql on the backend:

    cd backend
    yarn add graphql