Restructure ui into just elements and components (#3023)

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>
This commit is contained in:
Marshall Bowers 2023-09-22 21:27:47 -04:00 committed by GitHub
parent 895386cfaf
commit 0697d08e54
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 22 additions and 28 deletions

View file

@ -3,10 +3,8 @@
mod components;
mod element_ext;
mod elements;
mod modules;
pub mod prelude;
mod static_data;
mod templates;
mod theme;
mod tokens;
@ -14,8 +12,6 @@ pub use crate::theme::*;
pub use components::*;
pub use element_ext::*;
pub use elements::*;
pub use modules::*;
pub use prelude::*;
pub use static_data::*;
pub use templates::*;
pub use tokens::*;