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