import { IStoryIndexedObject } from '../../types';
import styles from './SeeMoreComponent.styles.css';
interface IProps {
story: IStoryIndexedObject;
onClose: () => void;
}
export function SeeMoreComponent(props: IProps) {
function getSeeMoreComponent() {
if (typeof props.story.seeMoreComponent === 'function') {
return