use leptos::*; #[component] pub fn Song(song_image_path: String, song_title: String, song_artist: String) -> impl IntoView { view!{
{song_title.clone()}

{song_title}

{song_artist}

} }