12345678910111213141516171819202122232425 |
- /*
- * @Author: your name
- * @Date: 2021-11-25 10:07:57
- * @LastEditTime: 2021-11-25 10:19:33
- * @LastEditors: Please set LastEditors
- * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
- * @FilePath: /MedicalWisdomCheckSys/src/components/iframePage/index.tsx
- */
- const IframePage = ({url}:{url:string})=>{
-
- return (
- <>
- {
- url&&(
- <iframe id="reportFrame" src={`${url}`} width="100%" height="800px"></iframe>
- )
- }
- </>
- )
- }
- export default IframePage;
|