mirror of
https://github.com/adoyle0/thaw.git
synced 2025-02-03 00:54:15 -05:00
10 lines
108 B
Rust
10 lines
108 B
Rust
|
mod app;
|
||
|
mod pages;
|
||
|
|
||
|
use app::*;
|
||
|
use leptos::*;
|
||
|
|
||
|
fn main() {
|
||
|
mount_to_body(|cx| view! { cx, <App/> })
|
||
|
}
|