import React from 'react' import classnames from 'classnames' import './index.scss' import PlusIcon from '~public/icons/Add.svg' interface Props { styleName?: string title: string close: () => void } class Modal extends React.Component { render() { return (

{this.props.title}

{this.props.children}
) } } export default Modal