mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-12-21 18:13:15 +00:00
9 lines
130 B
Rust
9 lines
130 B
Rust
use dioxus_core as dioxus;
|
|
use dioxus_core_macro::*;
|
|
|
|
fn main() {}
|
|
|
|
#[derive(Props)]
|
|
struct ChildProps<'a> {
|
|
name: &'a str,
|
|
}
|