mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-01 03:14:56 +07:00
9 lines
489 B
Rust
9 lines
489 B
Rust
//! The GPUI prelude is a collection of traits and types that are widely used
|
|
//! throughout the library. It is recommended to import this prelude into your
|
|
//! application to avoid having to import each trait individually.
|
|
|
|
pub use crate::{
|
|
AppContext as _, BorrowAppContext, Context, Element, InteractiveElement, IntoElement,
|
|
ParentElement, Refineable, Render, RenderOnce, StatefulInteractiveElement, Styled, StyledImage,
|
|
TaskExt as _, VisualContext, util::FluentBuilder,
|
|
};
|