1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-05-02 16:16:41 +07:00
vault-frontend/src/components/editors/SortableAudioGridItem/index.tsx
2022-01-19 12:30:04 +07:00

11 lines
280 B
TypeScript

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