strapi-plugin-email-designer-fix
Version:
Strapi Email designer plugin.
37 lines (31 loc) • 673 B
JavaScript
/**
*
* Block
*/
import React, { memo } from "react";
import PropTypes from "prop-types";
import { Wrapper, Sub } from "./components";
const Block = ({ children, description, style, title }) => (
<div className="col-md-12" style={style}>
<Wrapper>
<Sub>
{!!title && <p>{title}</p>}
{!!description && <p>{description}</p>}
</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);