diff --git a/src/PresentationalComponents/IframeComponent/IframeComponent.scss b/src/PresentationalComponents/IframeComponent/IframeComponent.scss new file mode 100644 index 0000000..55db418 --- /dev/null +++ b/src/PresentationalComponents/IframeComponent/IframeComponent.scss @@ -0,0 +1,3 @@ +.IframeComponent_fullheight { + height: 100%; +} diff --git a/src/PresentationalComponents/IframeComponent/IframeComponent.tsx b/src/PresentationalComponents/IframeComponent/IframeComponent.tsx new file mode 100644 index 0000000..35383aa --- /dev/null +++ b/src/PresentationalComponents/IframeComponent/IframeComponent.tsx @@ -0,0 +1,28 @@ +import React from "react"; +import "./IframeComponent.scss"; + +interface Props { + title: string; + src: string; + height: string; + width: string; +} + +export const IframeComponent: React.FC = ({ + title, + src, + height, + width +}) => { + return ( + +