mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 12:43:08 +00:00
11 lines
144 B
R
11 lines
144 B
R
use dioxus::prelude::*;
|
|
|
|
pub fn CoolChild() -> Element {
|
|
let a = 123;
|
|
|
|
rsx! {
|
|
div {
|
|
{some_expr()}
|
|
}
|
|
}
|
|
}
|