<head>
</head>
<body>
<h1>Agropatterns V2</h1>
<h2>Sensor page</h2>
<div id="errorButton"></div>
<div id="chooser"></div>
<div id="dashboard"></div>
<script type="module">
import {Runtime, Inspector} from "https://cdn.jsdelivr.net/npm/@observablehq/runtime@4/dist/runtime.js";
import notebook from "https://api.observablehq.com/@tomlarkworthy/productionization.js?v=3";
new Runtime().module(notebook, name => {
if (name === "dashboard") {
return new Inspector(document.querySelector("#dashboard"));
} else if (name === "viewof querySensorName") {
return new Inspector(document.querySelector("#chooser"));
} else if (name === "viewof errorButton") {
return new Inspector(document.querySelector("#errorButton"));
} else if (name === "mySentry") {
return true
}
});
</script>
</body>