All checks were successful
Build and Push Image / build-and-push (push) Successful in 4m33s
9 lines
104 B
Rust
9 lines
104 B
Rust
use dioxus::prelude::*;
|
|
|
|
#[component]
|
|
pub fn Media(id: String) -> Element {
|
|
rsx! {
|
|
{id}
|
|
}
|
|
}
|