import React from 'react';
import PropTypes from 'prop-types';
const NotFoundAlert = (props) => {
function clickHandler(viewType) {
if (props.onPageCreateClicked === null) {
return;
}
props.onPageCreateClicked(viewType);
}
return (
{/* Todo make the message supported by i18n GW4050 */ }
このページは存在しません。新たに作成する必要があります。
);
};
NotFoundAlert.propTypes = {
onPageCreateClicked: PropTypes.func,
};
export default NotFoundAlert;