UNPKG

@kiwicom/orbit-components

Version:

Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.

13 lines 353 B
import * as React from "react"; export const accordionDefault = { onExpand: () => {}, expanded: false, loading: false }; const context = /*#__PURE__*/React.createContext(accordionDefault); context.displayName = "AccordionOrbitContext"; export const useAccordion = () => React.useContext(context); export const { Consumer, Provider } = context;