Created
April 19, 2023 04:03
-
-
Save Enigo/def85b4fcb0c779d8951160d2d3f929a 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 route::{switch, Route}; | |
use yew::prelude::*; | |
use yew_router::prelude::*; | |
#[function_component(App)] | |
fn app() -> Html { | |
html! { | |
<BrowserRouter> | |
<Switch<Route> render={switch} /> | |
</BrowserRouter> | |
} | |
} | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment