import React from 'react'; import classNames from 'classnames'; import { SessionIconButton, SessionIconSize, SessionIconType } from './icon/'; interface Props { title: string; body: any; } export class SessionModal extends React.PureComponent { constructor(props: any) { super(props); } public render() { const { title } = this.props; return (
{title}
); } }