import { Card, Flex, Typography } from 'antd' import InfoCircleIcon from '../../Icons/InfoCircleIcon' import PropTypes from 'prop-types' const { Text } = Typography const MissingPlaceholder = ({ message, hasBackground = true }) => { return ( {message} ) } MissingPlaceholder.propTypes = { message: PropTypes.string.isRequired, hasBackground: PropTypes.bool } export default MissingPlaceholder