mod app;
mod assembly;
use sycamore::prelude::*;
use app::App;
fn main() {
sycamore::render(|| {
view! {
App {}
}
});