import React from 'react'; import cn from 'classnames'; import stl from './bottomBlock.module.css'; const BottomBlock = ({ children, className, additionalHeight, ...props }) => (
{ children }
); BottomBlock.displayName = 'BottomBlock'; export default BottomBlock;