42 lines
No EOL
749 B
Rust
42 lines
No EOL
749 B
Rust
mod add_remove;
|
|
mod assembly;
|
|
mod display;
|
|
mod engine;
|
|
mod outline;
|
|
|
|
use rustc_hash::FxHashSet;
|
|
use sycamore::prelude::*;
|
|
|
|
use add_remove::AddRemove;
|
|
use assembly::Assembly;
|
|
use display::Display;
|
|
use outline::Outline;
|
|
|
|
#[derive(Clone)]
|
|
struct AppState {
|
|
assembly: Assembly,
|
|
selection: Signal<FxHashSet<usize>>
|
|
}
|
|
|
|
impl AppState {
|
|
fn new() -> AppState {
|
|
AppState {
|
|
assembly: Assembly::new(),
|
|
selection: create_signal(FxHashSet::default())
|
|
}
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
sycamore::render(|| {
|
|
provide_context(AppState::new());
|
|
|
|
view! {
|
|
div(id="sidebar") {
|
|
AddRemove {}
|
|
Outline {}
|
|
}
|
|
Display {}
|
|
}
|
|
});
|
|
} |