Created
March 10, 2023 11:02
-
-
Save Mr-Malomz/4f66b96e3fa1ec715ad9c9be84b9d40f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use yew::prelude::*; | |
#[function_component(Loader)] | |
pub fn loader() -> Html { | |
html! { | |
<div class="spinner-border" role="status"> | |
<span class="visually-hidden">{"Loading..."}</span> | |
</div> | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment