import React from 'react'; import PropTypes from 'prop-types'; import { Card, Alert } from 'react-bootstrap'; const PluginExplanation = ({ educationalContent, miniExplanation, onLearnMore }) => (
{miniExplanation && (
{onLearnMore && (
)} )} {educationalContent && (
)}
); PluginExplanation.propTypes = { educationalContent: PropTypes.string, miniExplanation: PropTypes.string, onLearnMore: PropTypes.func, }; export default PluginExplanation;