dyna3/app-proto/sketch-outline/src/display.rs

10 lines
246 B
Rust
Raw Normal View History

2024-09-13 21:53:12 +00:00
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")
}
}