peace_webi_components 0.0.15

Web interface components for the peace automation framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![allow(non_snake_case)] // Components are all PascalCase.

//! Web interface components for the peace automation framework.

pub use leptos;

pub use crate::{
    app::App, children_fn::ChildrenFn, flow_graph::FlowGraph, flow_graph_current::FlowGraphCurrent,
    shell::Shell,
};

mod app;
mod children_fn;
mod flow_graph;
mod flow_graph_current;
mod shell;