import React from 'react'; import { Modal } from 'react-bootstrap'; import { EModalType } from '../ui/react-pathway-mapper'; interface IAboutModalProps{ show: boolean; handleClose: Function; } export default class AboutModal extends React.Component { constructor(props: IAboutModalProps){ super(props); } render(){ return( {this.props.handleClose(EModalType.ABOUT)}} > About

PathwayMapper 2.3

i-Vis information Visualization Lab

Bilkent University, Ankara, Turkey

Memorial Sloan-Kettering Cancer Center

New York, USA

https://github.com/iVis-at-Bilkent/pathway-mapper
) } }