/* eslint-disable react/no-danger */ import React from 'react'; import PropTypes from 'prop-types'; import './Content.scss'; const Content = ({ content }) => (
); Content.propTypes = { content: PropTypes.string.isRequired, }; export default Content;