add aspnet server
This commit is contained in:
19
client/src/components/playback/player.rs
Normal file
19
client/src/components/playback/player.rs
Normal file
@@ -0,0 +1,19 @@
|
||||
use dioxus::prelude::*;
|
||||
|
||||
use crate::components::playback::{Timeline, Viewport};
|
||||
const PLAYER_CSS: Asset = asset!("/assets/styling/player.scss");
|
||||
|
||||
#[component]
|
||||
pub fn Player() -> Element {
|
||||
rsx! {
|
||||
document::Link { rel: "stylesheet", href: PLAYER_CSS }
|
||||
div{
|
||||
id: "player",
|
||||
div {
|
||||
id: "head"
|
||||
}
|
||||
Viewport { }
|
||||
Timeline { }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user