Files
oak-gpui/zed/src/project_browser.rs
T
Max BrunsfeldandNathan Sobo b88b3e7657 Add sidebars
Co-Authored-By: Nathan Sobo <nathan@zed.dev>
2021-08-20 13:51:52 -07:00

20 lines
373 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(&self, _: &gpui::RenderContext<'_, Self>) -> gpui::ElementBox {
Empty::new().boxed()
}
}