import { Box } from '@wix/design-system'; import React, { PropsWithChildren } from 'react'; export const BulkActionContainer = ({ children }: PropsWithChildren<{}>) => { const ref = React.useRef(null); return ( {children} ); };