Created
September 26, 2022 19:05
-
-
Save Mr-Malomz/720f532db9423df8b8ae2c132f0e0990 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(App)] | |
fn app() -> Html { | |
html! { | |
<h1 class="text-primary">{ "Yew for React developers" }</h1> | |
} | |
} | |
fn main() { | |
yew::start_app::<App>(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment