This PR restructures the `ui` crate into just `elements` and `components`. This was already done on the `gpui2-ui` branch, just getting it onto `main`. Release Notes: - N/A --------- Co-authored-by: Nate Butler <nate@zed.dev>
18 lines
301 B
Rust
18 lines
301 B
Rust
#![allow(dead_code, unused_variables)]
|
|
|
|
mod components;
|
|
mod element_ext;
|
|
mod elements;
|
|
pub mod prelude;
|
|
mod static_data;
|
|
mod theme;
|
|
mod tokens;
|
|
|
|
pub use crate::theme::*;
|
|
pub use components::*;
|
|
pub use element_ext::*;
|
|
pub use elements::*;
|
|
pub use prelude::*;
|
|
pub use static_data::*;
|
|
pub use tokens::*;
|