docs: allow build core_reference/children example

It needs lifetime parameters.
This commit is contained in:
yuniruyuni 2022-01-12 03:09:25 +09:00
parent ca0dd4aa71
commit 388acf3277

View file

@ -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!" }