interface ColumnWrapperProps extends React.InputHTMLAttributes { stopPropagation?: boolean; } export function ColumnWrapper(props: ColumnWrapperProps) { const { stopPropagation = true, children, ...otherProps } = props; return (
{ if (stopPropagation) e.stopPropagation(); }} > {children}
); }