Skip to content

Commit

Permalink
Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewdavidmackenzie committed May 21, 2024
1 parent 1d670be commit fb91d9b
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions viewr/src/viewr.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
mod connections;
mod devices;
use connections::ConnectionDeviceStatusList;
use devices::DeviceStatusList;
use leptos::*;
use leptos_router::*;

use connections::ConnectionDeviceStatusList;
use devices::DeviceStatusList;

mod connections;
mod devices;

#[component]
#[allow(non_snake_case)]
pub fn App() -> impl IntoView {
Expand All @@ -20,5 +22,5 @@ pub fn App() -> impl IntoView {

fn main() {
console_error_panic_hook::set_once();
leptos::mount_to_body(|| view! { <App/> })
mount_to_body(|| view! { <App/> })
}

0 comments on commit fb91d9b

Please sign in to comment.