mirror of
https://github.com/adoyle0/thaw.git
synced 2025-03-13 05:59:49 -04:00
13 lines
221 B
Rust
13 lines
221 B
Rust
mod app;
|
|
mod components;
|
|
mod pages;
|
|
|
|
use app::App;
|
|
use leptos::prelude::*;
|
|
|
|
fn main() {
|
|
let _ = console_log::init_with_level(log::Level::Debug);
|
|
console_error_panic_hook::set_once();
|
|
|
|
mount_to_body(App)
|
|
}
|