worsdle/src/components/empty_row.rs

9 lines
144 B
Rust

use yew::prelude::*;
#[function_component]
pub fn EmptyRow() -> Html {
html! {
{ for (0..5u8).map(|_| html! { <p></p> }) }
}
}