add map report files download link

This commit is contained in:
2022-08-04 10:30:24 +08:00
parent cc27e134e7
commit d8a5e0c8d7
2 changed files with 84 additions and 12 deletions

View File

@@ -0,0 +1,13 @@
import Link from "next/link";
function DownloadReport({ URL }) {
return (
<p>
<Link passHref href={URL}>
<button>下载报告</button>
</Link>
</p>
);
}
export default DownloadReport;