1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00

removed react-sortable-hoc

This commit is contained in:
Fedor Katurov 2022-06-30 17:14:37 +07:00
parent 37a2e54543
commit c049d1621b
3 changed files with 0 additions and 18 deletions

View file

@ -37,7 +37,6 @@
"react-popper": "^2.2.3", "react-popper": "^2.2.3",
"react-router": "^5.1.2", "react-router": "^5.1.2",
"react-router-dom": "^5.1.2", "react-router-dom": "^5.1.2",
"react-sortable-hoc": "^2.0.0",
"react-sticky-box": "^1.0.2", "react-sticky-box": "^1.0.2",
"sass": "^1.49.0", "sass": "^1.49.0",
"swiper": "^8.0.7", "swiper": "^8.0.7",

View file

@ -1,11 +0,0 @@
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 };

View file

@ -1,6 +0,0 @@
@import "src/styles/variables";
.item {
z-index: 1;
box-sizing: border-box;
}