openreplay/frontend/app/components/Session_/BottomBlock/index.ts
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

10 lines
No EOL
296 B
TypeScript

import BottomBlock from './BottomBlock';
import Header from './Header';
import Content from './Content';
// @ts-ignore
BottomBlock.Header = Header;
// @ts-ignore
BottomBlock.Content = Content;
export default BottomBlock as typeof BottomBlock & { Header: typeof Header, Content: typeof Content }