mirror of
https://github.com/adoyle0/thaw.git
synced 2025-02-02 16:44:15 -05:00
10 lines
113 B
Rust
10 lines
113 B
Rust
mod app;
|
|
mod components;
|
|
mod pages;
|
|
|
|
use app::App;
|
|
use leptos::prelude::*;
|
|
|
|
fn main() {
|
|
mount_to_body(App)
|
|
}
|