Skip to content

Commit 09bb3c0

Browse files
committed
move main to bottom
1 parent 7194828 commit 09bb3c0

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

frameworks/keyed/dioxus/src/main.rs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@ use std::sync::atomic::{AtomicUsize, Ordering};
55
use dioxus::prelude::*;
66
use rand::{seq::SliceRandom, thread_rng};
77

8-
fn main() {
9-
launch(app);
10-
}
11-
12-
138

149
static ADJECTIVES: &[&str] = &[
1510
"pretty",
@@ -207,3 +202,7 @@ fn app() -> Element {
207202
}
208203
}
209204

205+
206+
fn main() {
207+
launch(app);
208+
}

0 commit comments

Comments
 (0)