feat: got sqlx working

This commit is contained in:
Andrew Rioux
2025-01-24 11:48:15 -05:00
parent 6e99dc3d70
commit 8695685eb3
19 changed files with 1071 additions and 49 deletions
+8
View File
@@ -0,0 +1,8 @@
use leptos::prelude::*;
#[component]
pub fn UserView() -> impl IntoView {
view! {
<p>"User view"</p>
}
}