summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 401e996..b8e10a5 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,10 +1,10 @@
-#![recursion_limit="1024"]
-extern crate wee_alloc;
+#![recursion_limit = "1024"]
extern crate console_error_panic_hook;
-use wasm_bindgen::prelude::*;
-use yew::prelude::App;
+extern crate wee_alloc;
use std::panic;
use view::main::MainView;
+use wasm_bindgen::prelude::*;
+use yew::prelude::App;
// Use `wee_alloc` as the global allocator.
#[global_allocator]
@@ -21,4 +21,4 @@ fn init() {
pub fn run_app() {
init();
App::<MainView>::new().mount_to_body();
-} \ No newline at end of file
+}