import { DraxHandle } from './DraxHandle'; import { DraxList } from './DraxList'; import { DraxProvider } from './DraxProvider'; import { DraxScrollView } from './DraxScrollView'; import { DraxView } from './DraxView'; import { SortableBoardContainer } from './SortableBoardContainer'; import { SortableContainer } from './SortableContainer'; import { SortableItem } from './SortableItem'; /** * Namespace object for convenient access to all Drax components. * * @example * ```tsx * import { Drax } from 'react-native-drax'; * * * * * * * ``` */ export const Drax = { Handle: DraxHandle, List: DraxList, Provider: DraxProvider, ScrollView: DraxScrollView, View: DraxView, SortableBoardContainer, SortableContainer, SortableItem, } as const;