import React from 'react'; import PropTypes from 'prop-types'; import { Button, Modal, Checkbox } from 'react-bootstrap'; import moment from 'moment'; import ReactUtils from '../ReactUtils'; export default class DeletePageListModal extends React.Component { /* * the threshold for omitting body */ static get OMIT_BODY_THRES() { return 400 }; constructor(props) { super(props); } componentWillMount() { } render() { if (this.props.pages === undefined || this.props.pages.length == 0) { return
} const listView = this.props.pages.map((page) => { return (