import { marked } from "marked"; // import sanitizeHtml from "sanitize-html"; class Card extends React.Component { constructor(props) { super(props); } render() { const { blog } = this.props; const sanitized = marked(blog.description); return (
{blog.description}
*/}