This commit is contained in:
2026-04-21 20:30:41 +01:00
parent 6c60013295
commit e8005f3fbf
13 changed files with 234 additions and 97 deletions

11
src/screen/welcome.rs Normal file
View File

@@ -0,0 +1,11 @@
struct Welcome {}
impl gpui::Render for Welcome {
fn render(
&mut self,
window: &mut gpui::Window,
cx: &mut gpui::Context<Self>,
) -> impl gpui::IntoElement {
todo!()
}
}