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