chart = Object.assign(html`<iframe style="width:100%;height:400px;border:none;" scrolling="no" class="noscroll">`, {srcdoc: `
<!DOCTYPE html>
<body>
<script type=module>
import {Runtime, Inspector} from "https://cdn.jsdelivr.net/npm/@observablehq/runtime@4/dist/runtime.js";
import define from "https://api.observablehq.com/@maliky/simple-line-chart-to-embed-in-resizable-react-components.js?v=3";
new Runtime().module(define, name => {
if (name === "chart") {
return new Inspector(document.body);
}
});
</script>
`})