UNPKG

strapi-plugin-content-manager

Version:

A powerful UI to easily manage your data.

46 lines (39 loc) 897 B
/** * * Block */ import React, { memo } from 'react'; import PropTypes from 'prop-types'; import { FormattedMessage } from 'react-intl'; import { Wrapper, Sub } from './components'; const renderMsg = msg => <p>{msg}</p>; const Block = ({ children, description, style, title }) => ( <div className="col-md-12"> <Wrapper style={style}> <Sub> {!!title && ( <p> <FormattedMessage id={title} /> </p> )} {!!description && ( <FormattedMessage id={description}>{renderMsg}</FormattedMessage> )} </Sub> {children} </Wrapper> </div> ); Block.defaultProps = { children: null, description: null, style: {}, title: null, }; Block.propTypes = { children: PropTypes.any, description: PropTypes.string, style: PropTypes.object, title: PropTypes.string, }; export default memo(Block);