()
| 5198 | |
| 5199 | class Example130 extends React.Component { |
| 5200 | render() { |
| 5201 | return ( |
| 5202 | <> |
| 5203 | <Carousel |
| 5204 | activeIndex={1} |
| 5205 | next={() => {}} |
| 5206 | previous={() => {}} |
| 5207 | enableTouch={false} |
| 5208 | > |
| 5209 | <CarouselIndicators |
| 5210 | items={[]} |
| 5211 | activeIndex={1} |
| 5212 | onClickHandler={() => {}} |
| 5213 | /> |
| 5214 | <CarouselControl |
| 5215 | direction="prev" |
| 5216 | directionText="Previous" |
| 5217 | onClickHandler={() => {}} |
| 5218 | /> |
| 5219 | <CarouselControl |
| 5220 | direction="next" |
| 5221 | directionText="Next" |
| 5222 | onClickHandler={() => {}} |
| 5223 | /> |
| 5224 | </Carousel> |
| 5225 | <Carousel |
| 5226 | activeIndex={1} |
| 5227 | next={() => {}} |
| 5228 | previous={() => {}} |
| 5229 | enableTouch={true} |
| 5230 | > |
| 5231 | <CarouselIndicators |
| 5232 | items={[]} |
| 5233 | activeIndex={1} |
| 5234 | onClickHandler={() => {}} |
| 5235 | /> |
| 5236 | <CarouselControl |
| 5237 | direction="prev" |
| 5238 | directionText="Previous" |
| 5239 | onClickHandler={() => {}} |
| 5240 | /> |
| 5241 | <CarouselControl |
| 5242 | direction="next" |
| 5243 | directionText="Next" |
| 5244 | onClickHandler={() => {}} |
| 5245 | /> |
| 5246 | </Carousel> |
| 5247 | <UncontrolledCarousel |
| 5248 | activeIndex={1} |
| 5249 | next={() => {}} |
| 5250 | previous={() => {}} |
| 5251 | enableTouch={false} |
| 5252 | items={[]} |
| 5253 | > |
| 5254 | <CarouselIndicators |
| 5255 | items={[]} |
| 5256 | activeIndex={1} |
| 5257 | onClickHandler={() => {}} |
nothing calls this directly
no outgoing calls
no test coverage detected