openreplay/frontend/app/components/Session_/BottomBlock/BottomBlock.tsx
Andrey Babushkin fd5c0c9747
Add lokalisation (#3092)
* applied eslint

* add locales and lint the project

* removed error boundary

* updated locales

* fix min files

* fix locales
2025-03-06 17:43:15 +01:00

26 lines
498 B
TypeScript

import React from 'react';
import cn from 'classnames';
import stl from './bottomBlock.module.css';
interface Props {
children?: React.ReactNode;
className?: string;
additionalHeight?: number;
}
function BottomBlock({
children = null,
className = '',
additionalHeight = 0,
...props
}: Props) {
return (
<div className={cn(stl.wrapper, 'flex flex-col mb-2')} {...props}>
{children}
</div>
);
}
BottomBlock.displayName = 'BottomBlock';
export default BottomBlock;