react-css-components v0.3.0 Release Notes

    • [BREAKING] Component spec format changed from using . as a delimiter between module and export name to ?.

    Update:

      Label {
        base: mylib.Label;
        color: red;
      }
    

    To:

      Label {
        base: mylib?Label;
        color: red;
      }