project_browser.rs

 1use gpui::{elements::Empty, Element, Entity, View};
 2
 3pub struct ProjectBrowser;
 4
 5pub enum Event {}
 6
 7impl Entity for ProjectBrowser {
 8    type Event = Event;
 9}
10
11impl View for ProjectBrowser {
12    fn ui_name() -> &'static str {
13        "ProjectBrowser"
14    }
15
16    fn render(&self, _: &mut gpui::RenderContext<'_, Self>) -> gpui::ElementBox {
17        Empty::new().boxed()
18    }
19}