1use std::time::Duration; 2 3use crate::layout::Size; 4 5/// Terminal dimensions and timing context shared across all components. 6pub struct RenderContext { 7 pub terminal_size: Size, 8 pub elapsed: Duration, 9}