mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-27 22:50:19 +00:00
19 lines
310 B
Rust
19 lines
310 B
Rust
//! An alternative function syntax
|
|
//!
|
|
|
|
use std::marker::PhantomData;
|
|
|
|
use dioxus_core::prelude::VNode;
|
|
|
|
fn main() {}
|
|
|
|
struct Context2<'a> {
|
|
_p: PhantomData<&'a ()>,
|
|
}
|
|
|
|
type FC2<'a, 'b, 'c: 'a + 'b, P> = fn(Context2<'a>, &'b P) -> VNode<'c>;
|
|
|
|
static Example: FC2<()> = |ctx, props| {
|
|
//
|
|
todo!()
|
|
};
|