Outline: switch from "Editor" to "App"

This commit is contained in:
Aaron Fenyes 2024-09-12 22:39:21 -07:00
parent 634e97b659
commit 20b96a9764
2 changed files with 6 additions and 6 deletions

View file

@ -1,13 +1,13 @@
use sycamore::prelude::*;
mod editor;
mod app;
use editor::Editor;
use app::App;
fn main() {
sycamore::render(|| {
view! {
Editor {}
App {}
}
});
}