Outline: start on editor state and outline view

This commit is contained in:
Aaron Fenyes 2024-09-12 15:24:41 -07:00
parent d3c9a08d22
commit 336b940471
6 changed files with 165 additions and 0 deletions

View file

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