mirror of
https://github.com/DioxusLabs/dioxus
synced 2025-02-17 06:08:26 +00:00
12 lines
144 B
Text
12 lines
144 B
Text
|
use dioxus::prelude::*;
|
||
|
|
||
|
pub fn CoolChild() -> Element {
|
||
|
let a = 123;
|
||
|
|
||
|
rsx! {
|
||
|
div {
|
||
|
{some_expr()}
|
||
|
}
|
||
|
}
|
||
|
}
|