mirror of
https://github.com/Astatin3/unshell-nodes-rs.git
synced 2026-06-08 16:18:08 -06:00
10 lines
262 B
Rust
10 lines
262 B
Rust
use ratatui::{Frame, layout::Rect, style::palette::tailwind, widgets::Paragraph};
|
|
|
|
pub const fn color() -> tailwind::Palette {
|
|
tailwind::BLUE
|
|
}
|
|
|
|
pub fn render(area: Rect, frame: &mut Frame) {
|
|
frame.render_widget(Paragraph::new("Hello, World!"), area);
|
|
}
|