2025-10-07 10:59:52 +01:00

12 lines
264 B
Rust

use leptos::*;
#[component]
pub fn UserProfileManagement() -> impl IntoView {
view! {
<div class="user-profile-management">
<h2>"User Profile Management"</h2>
<p>"User profile management placeholder"</p>
</div>
}
}