Files
sqlight/src/bin/app.rs
2025-05-29 22:46:25 +08:00

12 lines
274 B
Rust

use leptos::prelude::*;
use sqlight::app::Playground;
use wasm_bindgen::prelude::wasm_bindgen;
#[wasm_bindgen(main)]
async fn main() {
console_error_panic_hook::set_once();
console_log::init_with_level(log::Level::Debug).unwrap();
mount_to_body(Playground);
}