the champ
This commit is contained in:
parent
2ca2698cb7
commit
bbe05b3be8
4 changed files with 1192 additions and 1 deletions
18
src/ui/presenter.rs
Normal file
18
src/ui/presenter.rs
Normal 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 { }
|
||||
}
|
||||
)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue