ratatui-reactive 0.2.0

A minimalistic framework for building TUI applications using fine-grained reactivity.
Documentation
#![doc = include_str!("../README.md")]

mod backend;
mod core;
#[cfg(any(feature = "tokio", feature = "async-io"))]
mod delay;
#[cfg(any(feature = "tokio", feature = "async-io"))]
mod router;
mod runtime;
#[cfg(any(feature = "tokio", feature = "async-io"))]
#[cfg(test)]
mod tests;
#[cfg(any(feature = "tokio", feature = "async-io"))]
mod timer;

#[cfg(any(feature = "tokio", feature = "async-io"))]
pub use backend::*;
pub use core::*;
#[cfg(any(feature = "tokio", feature = "async-io"))]
pub use router::{Route, Router, provide_router};
pub use sycamore_reactive::*;
#[cfg(any(feature = "tokio", feature = "async-io"))]
pub use timer::*;