import { get, set } from "carry-on-store";
const storeId = "getExample";
set(storeId, state => {
state.field = "value";
});
const currentState = get(storeId);
const field = get(storeId, state => state.field);
render(<Inspector data={currentState} />);