App: add display canvas

This commit is contained in:
Aaron Fenyes 2024-09-13 14:53:12 -07:00
parent 0c2869d3f3
commit 49170671b4
5 changed files with 46 additions and 3 deletions

View file

@ -0,0 +1,10 @@
use sycamore::prelude::*;
#[component]
pub fn Display() -> View {
view! {
/* [TO DO] switch back to integer-valued parameters when that becomes
possible again */
canvas(width="750", height="750", tabindex="0")
}
}