import React from 'react'; import { EModalType } from '../ui/react-pathway-mapper'; import {Modal} from 'react-bootstrap'; interface IQuickHelpModalProps{ show: boolean; handleClose: (modalId: EModalType) => void; } export default class QuickHelpModal extends React.Component{ constructor(props: IQuickHelpModalProps){ super(props); } render(){ return( {this.props.handleClose(EModalType.HELP)}}> Quick Help
  • To add a node: Drag and drop from node palette
  • To add an interaction: Click on interaction type; then click on small circle on source node and release on target node
  • To add a node into a container (family, complex, compartment or process): Drag the node into its container node or select nodes to be contained and right click on container node and choose "Add Selected Into This"
  • To delete nodes/interactions: Select and perform Edit > Delete Selected
  • To overlay experiment data: Select Alteration % > Load From cBioPortal...
); } }