Files
AobaV2/AobaClient/src/views/media.rs
Amatsugu 41aa78b672
All checks were successful
Build and Push Image / build-and-push (push) Successful in 4m33s
added pagination controls
2025-12-28 14:29:46 -05:00

9 lines
104 B
Rust

use dioxus::prelude::*;
#[component]
pub fn Media(id: String) -> Element {
rsx! {
{id}
}
}