mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-09 03:57:39 +00:00
9 lines
477 B
Rust
9 lines
477 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::{
|
|
util::FluentBuilder, BorrowAppContext, BorrowWindow, Context, Element, FocusableElement,
|
|
InteractiveElement, IntoElement, ParentElement, Refineable, Render, RenderOnce,
|
|
StatefulInteractiveElement, Styled, VisualContext,
|
|
};
|