Created
September 26, 2022 19:12
-
-
Save Mr-Malomz/4bbefe12280f48292966f2b033dcaf04 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::*; | |
//add below | |
mod components; | |
mod models; | |
#[function_component(App)] | |
fn app() -> Html { | |
//app code goes here | |
} | |
fn main() { | |
yew::start_app::<App>(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment