import React from 'react'; import { SortableElement } from 'react-sortable-hoc'; import styles from './styles.module.scss'; const SortableAudioGridItem = SortableElement(({ children }) => (
{children}
)); export { SortableAudioGridItem };