// services/frontend-leptos/frontend/src/ui/scroll_area.rs use leptos::prelude::*; #[component] pub fn ScrollArea( #[prop(optional)] class: &'static str, #[prop(optional)] style: &'static str, children: Children, ) -> impl IntoView { view! {