first commit

This commit is contained in:
poslop
2024-06-04 16:42:49 -05:00
commit d2992c9e2c
37 changed files with 466 additions and 0 deletions

10
src/main.rs Normal file
View File

@@ -0,0 +1,10 @@
mod app;
mod views;
use app::App;
fn main() {
console_error_panic_hook::set_once();
yew::Renderer::<App>::new().render();
}