A VirtualList
yew component that renders only the visible part of a scrollable list.
This component uses the [ResizeObserver
] API to allow dynamically sized items in the list.
```toml
yew-virtualized = "0.1.0" ```
```rust fn items(idx: usize) -> Html { html! { format!("Item #{idx}") } }
fn app() -> Html {
html! {