use leptos::*; use crate::utils::mount_style; #[component] pub fn Divider() -> impl IntoView { mount_style("divider", include_str!("./divider.css")); view! {
} }