Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1use gpui::{Menu, MenuItem}; 2 3pub fn app_menus() -> Vec<Menu> { 4 use crate::actions::Quit; 5 6 vec![Menu { 7 name: "Storybook".into(), 8 items: vec![MenuItem::action("Quit", Quit)], 9 }] 10}