import React from 'react'; import cn from 'classnames'; import stl from './bottomBlock.module.css'; interface Props { children?: React.ReactNode; className?: string; additionalHeight?: number; } const BottomBlock = ({ children = null, className = '', additionalHeight = 0, ...props }: Props) => (
{ children }
); BottomBlock.displayName = 'BottomBlock'; export default BottomBlock;