singlestage/components/dialog/
trigger.rs

1use leptos::prelude::*;
2
3/// A button that opens the dialog.
4#[slot]
5pub struct DialogTrigger {
6    children: ChildrenFn,
7}