* 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
10 lines
No EOL
296 B
TypeScript
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 } |