import React from 'react'; import propTypes from 'prop-types'; import { Button } from '@openedx/paragon'; import classNames from 'classnames'; import EmptyIcon from '../../assets/Empty'; const EmptyPage = ({ title, subTitle = null, action = null, actionText = null, fullWidth = false, }) => { const containerClasses = classNames( 'min-content-height justify-content-center align-items-center d-flex w-100 flex-column', { 'bg-light-400': !fullWidth }, ); return (
{subTitle}
} {action && actionText && ( )}