UNPKG
@jchinkle/react-arborist
Version:
latest (3.0.7)
3.0.7
3.0.6
3.0.5
3.0.4
3.0.3
react-arborist.netlify.app
jchinkle/react-arborist
@jchinkle/react-arborist
/
src
/
components
/
outer-drop.ts
8 lines
(6 loc)
•
202 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{
ReactElement
}
from
"react"
;
import
{ useOuterDrop }
from
"../dnd/outer-drop-hook"
;
export
function
OuterDrop
(
props: { children: ReactElement }
) {
useOuterDrop
();
return
props.
children
; }