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