import React, { CSSProperties } from 'react'; import { IFrame } from './iframe'; export default { component: IFrame, title: 'UI/Iframe', }; const style: CSSProperties = { maxWidth: '700px', height: '500px', border: '2px solid hotpink', position: 'relative', }; export const WorkingStory = () => (