Changelog
2.1.0
Added support for fragments, IOW the React.Fragment
component, and deprecated
fromKefir
, because fragments make it unnecessary:
-const Foo = ( ... ) =>
- fromKefir( ... )
+const Foo = ( ... ) =>
+ <React.Fragment>
+ { ... }
+ </React.Fragment>