summary refs log tree commit diff stats
path: root/src/main.rs
blob: c377484eac11805a05194a46300f75b207c7e992 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
use leptos::prelude::{mount_to_body, view};

use rocie_mobile::App;

fn main() {
    // set up logging
    _ = console_log::init_with_level(log::Level::Debug);
    console_error_panic_hook::set_once();

    mount_to_body(|| {
        view! { <App /> }
    });
}