mirror of
https://github.com/danbulant/lucide
synced 2026-06-20 23:11:20 +00:00
13 lines
213 B
Rust
13 lines
213 B
Rust
mod app;
|
|
|
|
#[cfg(feature = "icons")]
|
|
mod icons;
|
|
|
|
use crate::app::App;
|
|
|
|
pub fn main() {
|
|
_ = console_log::init_with_level(log::Level::Debug);
|
|
console_error_panic_hook::set_once();
|
|
|
|
dioxus::launch(App);
|
|
}
|