diff --git a/src/components/add_artist.rs b/src/components/add_artist.rs new file mode 100644 index 0000000..5a58305 --- /dev/null +++ b/src/components/add_artist.rs @@ -0,0 +1,15 @@ +use leptos::*; +use leptos_icons::*; + +#[component] +pub fn AddArtistBtn(add_artist_open: RwSignal) -> impl IntoView { + let open_dialog = move |_| { + add_artist_open.set(true); + }; + + view! { + + } +} \ No newline at end of file