d9fc1b2Demonstrate lazy reading of remote HDF5/NWB files (direct h5wasm + LINDI)magland 1import { StrictMode } from "react";
2import { createRoot } from "react-dom/client";
3import { App } from "./App";
4import "./index.css";
6createRoot(document.getElementById("root")!).render(
7 <StrictMode>
8 <App />
9 </StrictMode>,
10);