UNPKG

strapi-plugin-content-manager

Version:

A powerful UI to easily manage your data.

27 lines (22 loc) 549 B
import React, { memo } from 'react'; import PropTypes from 'prop-types'; import { FormattedMessage } from 'react-intl'; const FormTitle = ({ description, title }) => ( <> {!!title && <FormattedMessage id={title} />} {!!description && ( <FormattedMessage id={description}> {msg => <p>{msg}</p>} </FormattedMessage> )} </> ); FormTitle.propTypes = { description: PropTypes.string, title: PropTypes.string, }; FormTitle.defaultProps = { description: null, title: null, }; export default memo(FormTitle);