1234567891011121314151617 |
- import React from 'react';
- import PropTypes from 'prop-types';
- const demo = props => {
- return (
- <iframe
- style={{ width: '100%', height: '100%' }}
- src="https://preparing2.kdanmobile.com:3024/pdf?preview_token=cb8d0d8b15fcdaac47751de82a95f882"
- />
- );
- };
- demo.propTypes = {
-
- };
- export default demo;
|