Update box component

This commit is contained in:
Hazem Krimi
2021-06-16 00:41:42 +01:00
parent b4250a092d
commit 4325bf309a
+1 -1
View File
@@ -89,7 +89,7 @@ export type BoxProps = {
const Box = React.forwardRef<HTMLDivElement, BoxProps>(
({ children, ...props }, ref) => {
return (
<Wrapper {...props} ref={ref}>
<Wrapper {...props} draggable='false' ref={ref}>
{children}
</Wrapper>
);