Closed frederickfogerty closed 8 years ago
This can be verified by inlining a list of components into a .component call.
.component
E.g.
describe('css-loader', function () { this.header(`## Webpack simple CSS loader.`); before(() => { this .component( <div className="css-loader-sample"> <p>{ lorem(50) }</p> <p>{ lorem(50) }</p> <p>{ lorem(50) }</p> </div> ); }); });
[As discussed] This will leave warnings in the console. We'll get this out as a release, then figure out how to clone the elements and give them keys to avoid unnecessary / ugly warnings.
This can be verified by inlining a list of components into a
.component
call.E.g.