Files
oak-gpui/zed/src/project_browser.rs
T
2021-08-30 17:51:26 +02:00

20 lines
381 B
Rust

use gpui::{elements::Empty, Element, Entity, View};
pub struct ProjectBrowser;
pub enum Event {}
impl Entity for ProjectBrowser {
type Event = Event;
}
impl View for ProjectBrowser {
fn ui_name() -> &'static str {
"ProjectBrowser"
}
fn render(&mut self, _: &mut gpui::RenderContext<'_, Self>) -> gpui::ElementBox {
Empty::new().boxed()
}
}