Extract UI elements from storybook
into new ui
crate (#3008)
This PR extracts the various UI elements from the `storybook` crate into a new `ui` library crate. Release Notes: - N/A
This commit is contained in:
parent
c252eae32e
commit
baa07e935e
35 changed files with 154 additions and 117 deletions
14
crates/ui/src/lib.rs
Normal file
14
crates/ui/src/lib.rs
Normal file
|
@ -0,0 +1,14 @@
|
|||
#![allow(dead_code, unused_variables)]
|
||||
|
||||
mod components;
|
||||
mod element_ext;
|
||||
mod elements;
|
||||
mod modules;
|
||||
pub mod prelude;
|
||||
mod theme;
|
||||
|
||||
pub use components::*;
|
||||
pub use element_ext::*;
|
||||
pub use elements::*;
|
||||
pub use modules::*;
|
||||
pub use theme::*;
|
Loading…
Add table
Add a link
Reference in a new issue