mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-12 10:34:32 +08:00
18 lines
231 B
Markdown
18 lines
231 B
Markdown
|
# `@gradio/carousel`
|
||
|
|
||
|
```html
|
||
|
<script>
|
||
|
import { Carousel, CarouselItem } from "@gradio/carousel";
|
||
|
</script>
|
||
|
|
||
|
<Carousel>
|
||
|
<CarouselItem>
|
||
|
<h3>hello</h3>
|
||
|
</CarouselItem>
|
||
|
|
||
|
<CarouselItem>
|
||
|
<img />
|
||
|
</CarouselItem>
|
||
|
</Carousel>
|
||
|
```
|