@@ -5,7 +5,7 @@ description: A slideshow component for cycling through elements—images or slid
55group : Components
66---
77
8- import { CarouselView } from ' boot-cell/source/Content /Carousel' ;
8+ import { CarouselView } from ' boot-cell/source/Media /Carousel' ;
99
1010import { Example } from ' ../../../source/component/Example' ;
1111
@@ -43,7 +43,7 @@ Here’s a carousel with slides only.
4343
4444``` TSX
4545import { render , createCell } from ' web-cell' ;
46- import { CarouselView } from ' boot-cell/source/Content /Carousel' ;
46+ import { CarouselView } from ' boot-cell/source/Media /Carousel' ;
4747
4848render (
4949 <CarouselView
@@ -73,7 +73,7 @@ Adding in the previous and next controls:
7373
7474``` TSX
7575import { render , createCell } from ' web-cell' ;
76- import { CarouselView } from ' boot-cell/source/Content /Carousel' ;
76+ import { CarouselView } from ' boot-cell/source/Media /Carousel' ;
7777
7878render (
7979 <CarouselView
@@ -105,7 +105,7 @@ You can also add the indicators to the carousel, alongside the controls, too.
105105
106106``` TSX
107107import { render , createCell } from ' web-cell' ;
108- import { CarouselView } from ' boot-cell/source/Content /Carousel' ;
108+ import { CarouselView } from ' boot-cell/source/Media /Carousel' ;
109109
110110render (
111111 <CarouselView
@@ -152,7 +152,7 @@ We hide them initially with `.d-none` and bring them back on medium-sized device
152152
153153``` TSX
154154import { render , createCell } from ' web-cell' ;
155- import { CarouselView } from ' boot-cell/source/Content /Carousel' ;
155+ import { CarouselView } from ' boot-cell/source/Media /Carousel' ;
156156
157157render (
158158 <CarouselView
@@ -197,7 +197,7 @@ Add `mode="fade"` to your carousel to animate slides with a fade transition inst
197197
198198``` TSX
199199import { render , createCell } from ' web-cell' ;
200- import { CarouselView } from ' boot-cell/source/Content /Carousel' ;
200+ import { CarouselView } from ' boot-cell/source/Media /Carousel' ;
201201
202202render (
203203 <CarouselView
0 commit comments