import React from "react"; import * as File from "utils/file" import {Button, Modal, Nav} from "react-bootstrap"; function HistoryModal({closeFn, standardCode}){ function fileDownloadStandardCode(fileSeq){ File.standardCode(fileSeq); } function fileDownload(fileSeq){ File.download(fileSeq); } return( <> 개정이력
코드 : {standardCode.kcscCd}
고시일 기준코드 신구건설기준비교
{standardCode.historyList.filter(history => { return history; }).map(history => { return (
{history.rvsnYmd.split('T')[0]}
{history.docFileGrpId} {history.docFileGrpId?:''}
{history.rvsnFileGrpId} {history.rvsnFileGrpId?:''}
) })}
) } export default HistoryModal;