openreplay/frontend/app/components/Session_/BottomBlock/BottomBlock.tsx
Delirium 5421aedfe6
move redux plugin hashing to worker thread, update redux panel look and style
* feat tracker moving redux stuff to worker thread

* feat ui: sync redux messages to action time

* feat ui: starting new redux ui

* fix backend mob gen

* feat tracker moving redux stuff to worker thread

* feat ui: sync redux messages to action time

* feat ui: starting new redux ui

* fix backend mob gen

* styles, third party etc

* rm dead code

* design fixes

* wrapper around old redux stuff

* prettier

* icon sw

* some changes to default style

* some code style fixes
2024-04-09 14:47:31 +02:00

24 lines
487 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;
}
const BottomBlock = ({
children = null,
className = '',
additionalHeight = 0,
...props
}: Props) => (
<div className={ cn(stl.wrapper, "flex flex-col mb-2") } { ...props } >
{ children }
</div>
);
BottomBlock.displayName = 'BottomBlock';
export default BottomBlock;