reactive_graph_std_trigger_model/component/
action.rs

1use crate::NAMESPACE_TRIGGER;
2use reactive_graph_graph::component_model;
3use reactive_graph_graph::component_ty;
4use reactive_graph_graph::properties;
5
6properties!(ActionProperties, (TRIGGER, "trigger", false));
7
8component_ty!(COMPONENT_ACTION, NAMESPACE_TRIGGER, COMPONENT_NAME_ACTION, "action");
9
10component_model!(Action, trigger);