cgp_component/lib.rs
1#![no_std]
2
3/*!
4 This crate defines the core CGP types and traits used to enable the core
5 CGP component implementation.
6*/
7
8mod traits;
9mod types;
10
11pub use traits::{CanUseComponent, DelegateComponent, IsProviderFor};
12pub use types::{UseContext, UseDelegate, UseFields, WithContext, WithProvider};