14 lines
294 B
JavaScript
14 lines
294 B
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
import Inline from './Inline';
|
|
|
|
const Paragraph = ({ value, mentions }) => <Inline value={value} mentions={mentions} />;
|
|
|
|
Paragraph.propTypes = {
|
|
value: PropTypes.string,
|
|
mentions: PropTypes.string
|
|
};
|
|
|
|
export default Paragraph;
|