From 3ce762ce5b21ac04fb781452affa3651ddcb6cfd Mon Sep 17 00:00:00 2001 From: dannyzou18 Date: Tue, 21 May 2024 22:39:48 -0400 Subject: [PATCH] create artist ui created --- src/components/add_artist.rs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/components/add_artist.rs 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