tuirealm 4.0.0

A tui-rs framework to build tui interfaces, inspired by React and Elm.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Core implements the core functionalities and types for tui-realm

pub mod application;
pub mod command;
pub mod component;
pub mod event;
pub mod injector;
pub mod props;
pub mod state;
pub mod subscription;
pub mod view;

// -- internal
pub(crate) use subscription::Subscription;
pub(crate) use view::WrappedComponent;