update for downloaded file

This commit is contained in:
2021-07-12 16:23:47 +05:30
parent f61eb30f5f
commit 32e12ced9b
14 changed files with 57 additions and 28 deletions

10
src/views/downloader.js Normal file
View File

@ -0,0 +1,10 @@
import * as React from 'react';
function Downloader(props) {
return (
<div style={{display: 'none'}}>
<iframe src={props.iframeSrc} />
</div>
);
}
export default Downloader