UNPKG

example-first-publish

Version:

Typography for BNNVARA

18 lines (13 loc) 308 B
import React from 'react'; import PropTypes from 'prop-types'; import Parser from 'html-react-parser'; import TextStyle from './style/text'; const Text = ({ value }) => ( <TextStyle> {Parser(value)} </TextStyle> ); Text.propTypes = { value: PropTypes.string.isRequired, }; export default Text;