Skip to content

Instantly share code, notes, and snippets.

@Enigo
Created April 19, 2023 04:03
Show Gist options
  • Save Enigo/def85b4fcb0c779d8951160d2d3f929a to your computer and use it in GitHub Desktop.
Save Enigo/def85b4fcb0c779d8951160d2d3f929a to your computer and use it in GitHub Desktop.
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