1
 2
 3
 4
 5
 6
 7
 8
 9
10
pub mod component;
pub mod handle;
pub mod handler;
pub mod service;

pub use yew::services::storage::Area;

pub use component::{SharedStateComponent, StateView};
pub use handle::{Handle, SharedHandle, SharedState, StateHandle, StorageHandle};
pub use handler::Storable;