the champ

This commit is contained in:
Chris Cochrun 2025-06-30 17:10:31 -05:00
parent 2ca2698cb7
commit bbe05b3be8
4 changed files with 1192 additions and 1 deletions

18
src/ui/presenter.rs Normal file
View file

@ -0,0 +1,18 @@
#![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 { }
}
)
}