comp_state 0.2.8

Component State - a clone of React Hooks use_state
Documentation
#![feature(track_caller)]
pub mod list;
pub mod prelude;
pub mod unmount;

mod helpers;
mod state_access;
mod state_functions;
mod store;
pub use prelude::*;
// Re export topo so that there will not be any conflicting
// topo versions used.

//experimental

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 3, 4);
    }
}