10 lines
246 B
Rust
10 lines
246 B
Rust
|
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")
|
||
|
}
|
||
|
}
|