import PropTypes from 'prop-types'
import React from 'react'
import { Row, Col } from 'reactstrap'
import ContentSection from './ContentSection'
const Stakeholder = ({ name, title, subtitle }) => (
)
Stakeholder.propTypes = {
name: PropTypes.string,
title: PropTypes.string,
subtitle: PropTypes.string,
}
const StakeholderSection = ({ className }) => (
)
StakeholderSection.propTypes = {
className: PropTypes.string,
}
export default StakeholderSection