demo.js 324 B

1234567891011121314151617
  1. import React from 'react';
  2. import PropTypes from 'prop-types';
  3. const demo = props => {
  4. return (
  5. <iframe
  6. style={{ width: '100%', height: '100%' }}
  7. src="https://preparing2.kdanmobile.com:3024/pdf?preview_token=cb8d0d8b15fcdaac47751de82a95f882"
  8. />
  9. );
  10. };
  11. demo.propTypes = {
  12. };
  13. export default demo;