浏览代码

docs: allow build core_reference/children example

It needs lifetime parameters.
yuniruyuni 3 年之前
父节点
当前提交
388acf3277
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      examples/core_reference/children.rs

+ 2 - 2
examples/core_reference/children.rs

@@ -32,11 +32,11 @@ fn Example(cx: Scope) -> Element {
 }
 
 #[derive(Props)]
-struct BannerProps {
+struct BannerProps<'a> {
     children: Element<'a>,
 }
 
-fn Banner(cx: Scope) -> Element {
+fn Banner<'a>(cx: Scope<'a, BannerProps<'a>>) -> Element<'a> {
     cx.render(rsx! {
         div {
             h1 { "This is a great banner!" }