SHISME / react-native-draggable-grid

A draggable and sortable grid of react-native
308 stars 96 forks source link

Typescript error in block.tsx #73

Closed alzalabany closed 1 year ago

alzalabany commented 1 year ago

Hi! πŸ‘‹

Firstly, thanks for your work on this project! πŸ™‚

Today I used patch-package to patch react-native-draggable-grid@2.1.6 for the project I'm working on.

Here is the diff that solved my problem:

diff --git a/node_modules/react-native-draggable-grid/src/block.tsx b/node_modules/react-native-draggable-grid/src/block.tsx
index 25e4694..6b2927f 100644
--- a/node_modules/react-native-draggable-grid/src/block.tsx
+++ b/node_modules/react-native-draggable-grid/src/block.tsx
@@ -17,6 +17,7 @@ interface BlockProps {
   onLongPress: () => void
   panHandlers: GestureResponderHandlers
   delayLongPress:number
+  children?:React.ReactNode
 }

 export const Block: FunctionComponent<BlockProps> = ({

This issue body was partially generated by patch-package.

SHISME commented 1 year ago

OK, I had fixed it.