7 lines
93 B
Rust
7 lines
93 B
Rust
use crate::any::AnyTrait;
|
|
|
|
pub mod button;
|
|
pub mod slider;
|
|
|
|
pub trait Component: AnyTrait {}
|