cargo fmt

This commit is contained in:
Max Brunsfeld 2024-01-03 13:13:46 -08:00
parent 83f4c61657
commit a8061232a5
2 changed files with 5 additions and 8 deletions

View file

@ -1,6 +1,4 @@
use gpui::{ use gpui::{div, AnyElement, IntoElement, ParentElement, RenderOnce, Styled, WindowContext};
div, AnyElement, IntoElement, ParentElement, RenderOnce, Styled, WindowContext,
};
use smallvec::SmallVec; use smallvec::SmallVec;
#[derive(Default, IntoElement)] #[derive(Default, IntoElement)]

View file

@ -1,10 +1,9 @@
use gpui::{
div, AnyElement, Element, IntoElement, ParentElement, RenderOnce, Styled,
WindowContext,
};
use smallvec::SmallVec;
use crate::prelude::*; use crate::prelude::*;
use crate::v_stack; use crate::v_stack;
use gpui::{
div, AnyElement, Element, IntoElement, ParentElement, RenderOnce, Styled, WindowContext,
};
use smallvec::SmallVec;
/// A popover is used to display a menu or show some options. /// A popover is used to display a menu or show some options.
/// ///