mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-05-02 16:16:41 +07:00
11 lines
280 B
TypeScript
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 };
|