* 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
24 lines
487 B
TypeScript
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;
|