yew-autocomplete 0.3.1

Auto-complete input for yew.rs
Documentation
1
2
3
4
5
6
7
8
9
10
11
use yew::{html, Html};

pub trait RenderHtml {
    fn render(&self) -> Html;
}

impl RenderHtml for String {
    fn render(&self) -> Html {
        html! {(*self).clone()}
    }
}