Browse Source

Update files

LenDoc 2 years ago
parent
commit
11e7c543ba
1 changed files with 0 additions and 4 deletions
  1. 0 4
      src/components/DropZone.js

+ 0 - 4
src/components/DropZone.js

@@ -34,7 +34,6 @@ export function Basic({ onLoad }) {
 export const SortableItem = SortableElement(({ url, onRemoveImage, _id}) => {
   return (
     <>
- 
     <img
       style={{
         // margin: '20px',
@@ -67,10 +66,7 @@ export const SortableContainer = sortableContainer(({ children ,checkLength}) =>
 
   return (
     <>
-   
           <ul style={{ display: 'flex', flexDirection: 'row', margin: '5px' }}>{children}</ul>
-   
-     
     </>
   )
 })