mirror of
https://github.com/librekeys/picoforge.git
synced 2026-07-28 08:01:19 -07:00
11 lines
181 B
Rust
11 lines
181 B
Rust
// src/views/logs.rs
|
|
use gpui::*;
|
|
|
|
pub struct LogsView;
|
|
|
|
impl LogsView {
|
|
pub fn build() -> impl IntoElement {
|
|
div().size_full().p_8().child("Logs goes here...")
|
|
}
|
|
}
|