ratatui-kit 0.9.0

A framework for building interactive terminal user interfaces with ratatui
Documentation
1
2
3
4
5
6
7
8
9
// `#[component]` 只认 props/hooks 参数名:其它参数名应报错。
use ratatui_kit::prelude::*;

#[component]
fn App(foo: u8) -> impl Into<AnyElement<'static>> {
    element!(View {})
}

fn main() {}