import React from 'react'; /** * Component that displays a placeholder inside crate. * Allows to display how it remains space for the current crate. */ export function FakePlaceholder({isDraggingOver, nToDraw}) { const fakePlaceholder = []; for (let i = nToDraw; i > 0; i--) { fakePlaceholder.push(
); } return ( {fakePlaceholder} ); }