13 lines
308 B
JavaScript
13 lines
308 B
JavaScript
export function useTeachingPopoverCarouselContextValues_unstable(state) {
|
|
const { store, value, selectPageByValue, selectPageByDirection } = state;
|
|
const carousel = {
|
|
store,
|
|
value,
|
|
selectPageByDirection,
|
|
selectPageByValue
|
|
};
|
|
return {
|
|
carousel
|
|
};
|
|
}
|