react-carousel-query
Version:
A infinite carousel component made with react that handles the pagination for you.
19 lines (15 loc) • 448 B
JavaScript
// Specifically configured to set name on Component5a and Component5b
function Component5a() {
return "some string";
}
Component5a.displayName = "Component5a";
var Component5b = function () {
return "some string";
};
Component5b.displayName = "Component5b";
// Known component's name used inside another function
var Component5c = function () {
function Component5c() {}
return Component5c;
}();
Component5c.displayName = "Component5c";