diff --git a/shells/dev/app/Iframe/index.js b/shells/dev/app/Iframe/index.js
index 12fbf4bbc7..8e4967ae5a 100644
--- a/shells/dev/app/Iframe/index.js
+++ b/shells/dev/app/Iframe/index.js
@@ -1,16 +1,18 @@
-import React from 'react';
+/** @flow */
+
+import React, { Fragment } from 'react';
import ReactDOM from 'react-dom';
export default function Iframe() {
return (
- <>
+
Iframe
- >
+
);
}
@@ -45,7 +47,7 @@ function Frame(props) {
}, []);
return (
- <>
+
{element ? ReactDOM.createPortal(props.children, element) : null}
- >
+
);
}