Add working API calls, fix warnings
All checks were successful
Build Crate / build (push) Successful in 7m16s

This commit is contained in:
2023-09-21 20:03:16 -04:00
parent 30b637dfef
commit 0a68829d6c
12 changed files with 147 additions and 69 deletions

View File

@@ -11,7 +11,7 @@ pub struct LayoutProps<'a, G: Html> {
#[component]
pub fn Layout<'a, G: Html>(
cx: Scope<'a>,
LayoutProps { title, children }: LayoutProps<'a, G>,
LayoutProps { title: _, children }: LayoutProps<'a, G>,
) -> View<G> {
let children = children.call(cx);