mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-12-19 09:03:13 +00:00
26 lines
471 B
Rust
26 lines
471 B
Rust
use dioxus_core::component::fc_to_builder;
|
|
use dioxus_core::prelude::*;
|
|
|
|
static BLAH: FC<()> = |ctx, _props| {
|
|
let g = "asd".to_string();
|
|
ctx.render(rsx! {
|
|
div {
|
|
SomeComponent {
|
|
some_field: g
|
|
}
|
|
}
|
|
})
|
|
};
|
|
|
|
#[derive(PartialEq, Props)]
|
|
pub struct ExampleProps {
|
|
some_field: String,
|
|
}
|
|
|
|
static SomeComponent: FC<ExampleProps> = |ctx, _props| {
|
|
ctx.render(rsx! {
|
|
div { }
|
|
})
|
|
};
|
|
|
|
fn main() {}
|