function useCarousel()

in 3-ai-native-e2e-sample/frontend/src/components/ui/carousel.tsx [33:41]


function useCarousel() {
  const context = React.useContext(CarouselContext)

  if (!context) {
    throw new Error("useCarousel must be used within a <Carousel />")
  }

  return context
}