import React from 'react'; import PropTypes from 'prop-types'; import { useTranslation } from 'react-i18next'; const DeleteAllButton = (props) => { const { selectedPage, checked } = props; const { t } = useTranslation(); function deleteAllSelectedPage(pagesToDelete) { // TODO: implement this function // https://estoc.weseek.co.jp/redmine/issues/77543 // do something with pagesDelete to delete them. } return (