18 lines
345 B
Rust
18 lines
345 B
Rust
#![allow(non_snake_case)]
|
|
use dioxus::prelude::*;
|
|
use dioxus_logger::tracing::info;
|
|
|
|
use crate::ui::video::VideoEl;
|
|
|
|
#[component]
|
|
pub fn Presenter() -> Element {
|
|
rsx!(
|
|
div {
|
|
class: "flex",
|
|
p { class: "my-10 flex-center",
|
|
"The Presenter"
|
|
}
|
|
VideoEl { }
|
|
}
|
|
)
|
|
}
|