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.

RichText.jsx 336B

123456789101112
  1. import React from 'react';
  2. import ReactMarkdown from 'react-markdown';
  3. import '../../styles/reactMarkdown.css';
  4. const RichText = ({ data }) => {
  5. return (
  6. // eslint-disable-next-line react/no-children-prop
  7. <ReactMarkdown className="article n-paragraph" linkTarget="_blank" children={data} />
  8. );
  9. };
  10. export default RichText;